[1.4.X] Fixed a documentation typo on the widget page.
Backport of f8ef93a657
from master
This commit is contained in:
parent
e4b7e7d86d
commit
03e79c3386
|
@ -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')]
|
||||
|
|
Loading…
Reference in New Issue