summaryrefslogtreecommitdiff
path: root/docs/topics/forms/formsets.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-14 08:01:01 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-14 08:01:01 +0000
commit26fabdb218c464286ff14ca2dda70e62a1b0a654 (patch)
treef7b8f0373176a3eee5ffcfa049ef560acc53c1ea /docs/topics/forms/formsets.txt
parent599852d04db750c62f9b8e5370e35ef71acfd5b6 (diff)
Fixed #9531 -- Fixed some awkward wording in the docs. Thanks, gsf.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9434 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/forms/formsets.txt')
-rw-r--r--docs/topics/forms/formsets.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index f3aa4a947e..61c2ad377a 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -76,8 +76,8 @@ force the maximum number of forms the formset will display::
<tr><th><label for="id_form-0-title">Title:</label></th><td><input type="text" name="form-0-title" id="id_form-0-title" /></td></tr>
<tr><th><label for="id_form-0-pub_date">Pub date:</label></th><td><input type="text" name="form-0-pub_date" id="id_form-0-pub_date" /></td></tr>
-The default value of ``max_num`` is ``0`` which is the same as saying put no
-limit on the number forms displayed.
+A ``max_num`` value of ``0`` (the default) puts no limit on the number forms
+displayed.
Formset validation
------------------