summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-09-26 09:31:01 -0400
committerTim Graham <timograham@gmail.com>2016-09-26 09:55:23 -0400
commitdec77af525268a02bf964f498fefc1c27b4ebbe5 (patch)
treeea8151a2dd7158a9275de4a8bdb722e35ed1e06a
parent69839e97b9f1e0fc402b330d73d4c482f0d38caa (diff)
[1.10.x] Fixed #27270 -- Clarified a paragraph in docs/topics/forms/formsets.txt.
Thanks Kifsif for the suggestion. Backport of 8110673aafd48e9345c17458638c10fb12ab4f2a from master
-rw-r--r--docs/topics/forms/formsets.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 6a0a43b7c1..922df46a2c 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -164,10 +164,10 @@ As we can see, ``formset.errors`` is a list whose entries correspond to the
forms in the formset. Validation was performed for each of the two forms, and
the expected error message appears for the second item.
-Just like when using a normal ``Form``, each form in the formset may include
-HTML attributes such as ``maxlength`` for browser validation. However, forms of
-formsets won't include the ``required`` attribute as that validation may be
-incorrect when adding and deleting forms.
+Just like when using a normal ``Form``, each field in a formset's forms may
+include HTML attributes such as ``maxlength`` for browser validation. However,
+form fields of formsets won't include the ``required`` attribute as that
+validation may be incorrect when adding and deleting forms.
.. method:: BaseFormSet.total_error_count()