From 399cf303cbfe086e78fd9421b75c6df55fc234d0 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 4 Aug 2014 06:57:09 -0400 Subject: [PATCH] Corrected a comment in forms/forms.py; refs #16612. --- django/forms/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/forms.py b/django/forms/forms.py index 4dd4acba01d..c5d6b19267d 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -420,7 +420,7 @@ class BaseForm(object): def changed_data(self): if self._changed_data is None: self._changed_data = [] - # XXX: For now we're asking the individual widgets whether or not the + # XXX: For now we're asking the individual fields whether or not the # data has changed. It would probably be more efficient to hash the # initial data, store it in a hidden field, and compare a hash of the # submitted data, but we'd need a way to easily get the string value