From 81bb8d12209a419142b1bf6961fbf9fc44419dcd Mon Sep 17 00:00:00 2001 From: Marc Sibson Date: Thu, 9 Jan 2014 20:31:22 -0800 Subject: [PATCH] Fixed docstring typo in django/forms/forms.py. --- 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 880a74f49e..bcc0d6dfa4 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -661,7 +661,7 @@ class BoundField(object): """ Wrapper around the field widget's `id_for_label` method. Useful, for example, for focusing on this field regardless of whether - it has a single widget or a MutiWidget. + it has a single widget or a MultiWidget. """ widget = self.field.widget id_ = widget.attrs.get('id') or self.auto_id