diff options
| author | Marc Sibson <sibson@gmail.com> | 2014-01-09 20:31:22 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-01-10 08:33:30 -0500 |
| commit | 81bb8d12209a419142b1bf6961fbf9fc44419dcd (patch) | |
| tree | c7eff3173e84806fa8e0824e8b37720ce87b7a6a | |
| parent | 270c9fe48883deaacbc15014ceebef6f895559ab (diff) | |
Fixed docstring typo in django/forms/forms.py.
| -rw-r--r-- | django/forms/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
