summaryrefslogtreecommitdiff
path: root/django/forms/formsets.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/formsets.py')
-rw-r--r--django/forms/formsets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/formsets.py b/django/forms/formsets.py
index 3810ebf7fd..4d2d9fca47 100644
--- a/django/forms/formsets.py
+++ b/django/forms/formsets.py
@@ -213,7 +213,7 @@ class BaseFormSet(StrAndUnicode):
return (1, 0) # +infinity, larger than any number
return (0, k[1])
self._ordering.sort(key=compare_ordering_key)
- # Return a list of form.cleaned_data dicts in the order spcified by
+ # Return a list of form.cleaned_data dicts in the order specified by
# the form data.
return [self.forms[i[0]] for i in self._ordering]
ordered_forms = property(_get_ordered_forms)