From 1b68c6a50f3048764a2be55afbf39a3060ac66b4 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 14 Nov 2008 08:07:11 +0000 Subject: [PATCH] [django-1.0.X] Fixed #9531 -- Fixed some awkward wording in the docs. Thanks, gsf. Backport of r9434 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9436 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/forms/formsets.txt | 4 ++-- 1 file 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:: -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 ------------------