summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorI am Clinton <garwoodpr@users.noreply.github.com>2015-05-26 09:27:55 -0500
committerTim Graham <timograham@gmail.com>2015-05-26 10:48:37 -0400
commit1e3741b8a3d35e46b50d6490e0d7f5048de0dc86 (patch)
tree3c36c348f76753965a669de17cf9503e35040db9 /docs/ref/forms
parent62c19a21b65985b9d54eb1c5a1cf747fe7a54c84 (diff)
[1.8.x] Fixed typos in docs/ref/forms/widgets.txt
Backport of 14f20c1fdc894dd348ec6a43eb4e0c5dd854d902 from master
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/widgets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 242a77110f..edd31de008 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -7,7 +7,7 @@ Widgets
.. currentmodule:: django.forms
-A widget is Django's representation of a HTML input element. The widget
+A widget is Django's representation of an HTML input element. The widget
handles the rendering of the HTML, and the extraction of data from a GET/POST
dictionary that corresponds to the widget.
@@ -418,7 +418,7 @@ These widgets make use of the HTML elements ``input`` and ``textarea``.
Beware that not all browsers support entering localized numbers in
``number`` input types. Django itself avoids using them for fields having
- their :attr:`~django.forms.Field.localize` property to ``True``.
+ their :attr:`~django.forms.Field.localize` property set to ``True``.
``EmailInput``
~~~~~~~~~~~~~~