diff options
| author | Tim Saylor <tim.saylor@gmail.com> | 2012-06-13 13:42:18 -0500 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2012-06-19 10:37:53 +0200 |
| commit | f8ef93a6576837ef3598066d6ed715171a91cd04 (patch) | |
| tree | e30ac3c4ebd41eebee48dcd0822d8d7f4d34b4e8 /docs/ref/forms | |
| parent | c57ba673312cb5774d544353044e2182b6223040 (diff) | |
Fixed a documentation typo on the widget page.
Diffstat (limited to 'docs/ref/forms')
| -rw-r--r-- | docs/ref/forms/widgets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt index 88d0d706cd..fb7657349a 100644 --- a/docs/ref/forms/widgets.txt +++ b/docs/ref/forms/widgets.txt @@ -75,7 +75,7 @@ changing :attr:`ChoiceField.choices` will update :attr:`Select.choices`. For example:: >>> from django import forms - >>> CHOICES = (('1', 'First',), ('2', 'Second',))) + >>> CHOICES = (('1', 'First',), ('2', 'Second',)) >>> choice_field = forms.ChoiceField(widget=forms.RadioSelect, choices=CHOICES) >>> choice_field.choices [('1', 'First'), ('2', 'Second')] |
