summaryrefslogtreecommitdiff
path: root/django/forms/formsets.py
diff options
context:
space:
mode:
authorGavin Wahl <gwahl@fusionbox.com>2013-03-28 11:16:53 -0600
committerGavin Wahl <gwahl@fusionbox.com>2013-03-28 11:16:53 -0600
commitec04fd1344bda8067404b720ce48b01eb3546c6e (patch)
tree917a723867d6d1ee770995083925746a0946304d /django/forms/formsets.py
parente081601f6e81e0c41e66200753c348a5009c3ccf (diff)
Fixed spelling errors
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 98ae3205fe..2ab197dee2 100644
--- a/django/forms/formsets.py
+++ b/django/forms/formsets.py
@@ -118,7 +118,7 @@ class BaseFormSet(object):
if self.is_bound:
return self.management_form.cleaned_data[INITIAL_FORM_COUNT]
else:
- # Use the length of the inital data if it's there, 0 otherwise.
+ # Use the length of the initial data if it's there, 0 otherwise.
initial_forms = self.initial and len(self.initial) or 0
return initial_forms