summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-01-20 08:19:06 -0800
committerTim Graham <timograham@gmail.com>2018-01-20 11:19:06 -0500
commit47d238b69602711c06c369a5555bb554a4b3f7fb (patch)
treef1972664cbf2065277a5562f8637054f65f4e11e /docs/ref/forms
parentb98dc1706e9c63a4cc7d061a3d8a95f6cbf5e950 (diff)
Fixed #29041 -- Changed SelectMultiple's multiple attribute to HTML5 boolean syntax.
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/widgets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 12677eb908..dc6256ee06 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -664,7 +664,7 @@ that specifies the template used to render each choice. For example, for the
* ``option_template_name``: ``'django/forms/widgets/select_option.html'``
Similar to :class:`Select`, but allows multiple selection:
- ``<select multiple="multiple">...</select>``
+ ``<select multiple>...</select>``
``RadioSelect``
~~~~~~~~~~~~~~~