From ec04fd1344bda8067404b720ce48b01eb3546c6e Mon Sep 17 00:00:00 2001 From: Gavin Wahl Date: Thu, 28 Mar 2013 11:16:53 -0600 Subject: Fixed spelling errors --- django/forms/formsets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/forms') 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 -- cgit v1.3