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:58 -0500 |
| commit | bd3af2ee642fc2885fdc641d3563f64bd345663d (patch) | |
| tree | 9cb6854af5735e2e663758ea17c105ddaf72d65b /django | |
| parent | e694b0631f6f33a4c16b3f9650dff67c55b2c830 (diff) | |
[1.6.x] Fixed docstring typo in django/forms/forms.py.
Backport of 81bb8d1220 from master
Diffstat (limited to 'django')
| -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 325de1c87a..573215ddc2 100644 --- a/django/forms/forms.py +++ b/django/forms/forms.py @@ -577,7 +577,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 |
