summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-04 06:57:09 -0400
committerTim Graham <timograham@gmail.com>2014-08-04 06:57:09 -0400
commit399cf303cbfe086e78fd9421b75c6df55fc234d0 (patch)
tree618573d51010fea6ff0c5434fe888773178eddba
parentd4f62a7ae7bed98f3ee3f5c9a76f5591ec7841fd (diff)
Corrected a comment in forms/forms.py; refs #16612.
-rw-r--r--django/forms/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/forms.py b/django/forms/forms.py
index 4dd4acba01..c5d6b19267 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