summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/validation.txt2
-rw-r--r--docs/ref/forms/widgets.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 614b345b5a..b857795e7a 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -95,7 +95,7 @@ overridden:
:ref:`ModelForm documentation
<overriding-modelform-clean-method>` for more information)
-These methods are run in the order given above, one field at a time. That is,
+These methods are run in the order given above, one field at a time. That is,
for each field in the form (in the order they are declared in the form
definition), the ``Field.clean()`` method (or its override) is run, then
``clean_<fieldname>()``. Finally, once those two methods are run for every
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 38647aa1c2..2488ba66a3 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -225,7 +225,7 @@ foundation for custom widgets.
.. class:: Widget(attrs=None)
This abstract class cannot be rendered, but provides the basic attribute
- :attr:`~Widget.attrs`. You may also implement or override the
+ :attr:`~Widget.attrs`. You may also implement or override the
:meth:`~Widget.render()` method on custom widgets.
.. attribute:: Widget.attrs