summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorI am Clinton <garwoodpr@users.noreply.github.com>2015-05-25 09:13:01 -0500
committerTim Graham <timograham@gmail.com>2015-05-25 10:50:33 -0400
commit1f33bf78fd198f4d67fe13743337d0f2b245af99 (patch)
treec69d96c39572647a123f0a7bb6bcd125d919860c /docs/ref/forms
parent87934c4b6885351aa6a12221191770da71087dfa (diff)
[1.8.x] Fixed typos in docs/ref/forms/fields.txt
Backport of a6b77abff75709ee09a0d31d450af601f1f806d9 from master
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/fields.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index b63826d9b1..e51007c5f4 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -293,7 +293,7 @@ See the :doc:`validators documentation </ref/validators>` for more information.
.. attribute:: Field.localize
-The ``localize`` argument enables the localization of form data, input as well
+The ``localize`` argument enables the localization of form data input, as well
as the rendered output.
See the :ref:`format localization <format-localization>` documentation for
@@ -659,7 +659,7 @@ For each field, we describe the default widget used if you don't specify
``False``, else :class:`TextInput`.
* Empty value: ``None``
* Normalizes to: A Python float.
- * Validates that the given value is an float. Leading and trailing
+ * Validates that the given value is a float. Leading and trailing
whitespace is allowed, as in Python's ``float()`` function.
* Error message keys: ``required``, ``invalid``, ``max_value``,
``min_value``
@@ -937,7 +937,7 @@ Slightly complex built-in ``Field`` classes
* Default widget: :class:`TextInput`
* Empty value: ``''`` (an empty string)
* Normalizes to: A Unicode object.
- * Validates that the given value against each of the fields specified
+ * Validates the given value against each of the fields specified
as an argument to the ``ComboField``.
* Error message keys: ``required``, ``invalid``
@@ -965,7 +965,7 @@ Slightly complex built-in ``Field`` classes
* Default widget: :class:`TextInput`
* Empty value: ``''`` (an empty string)
* Normalizes to: the type returned by the ``compress`` method of the subclass.
- * Validates that the given value against each of the fields specified
+ * Validates the given value against each of the fields specified
as an argument to the ``MultiValueField``.
* Error message keys: ``required``, ``invalid``, ``incomplete``