1
0
mirror of https://github.com/django/django.git synced 2025-03-14 03:10:45 +00:00

[1.6.x] Fixed typo in topics/forms/formsets.txt

Backport of e265112cd1 from master
This commit is contained in:
Tim Graham 2014-09-10 11:17:33 -04:00
parent e2d4677a1c
commit eba54eb157

View File

@ -102,7 +102,7 @@ gives you the ability to limit the number of forms the formset will display::
If the value of ``max_num`` is greater than the number of existing items in the
initial data, up to ``extra`` additional blank forms will be added to the
formset, so long as the total number of forms does not exceed ``max_num``. For
example, if ``extra=2`` and ``max_num=2`` and the formset is initalized with
example, if ``extra=2`` and ``max_num=2`` and the formset is initialized with
one ``initial`` item, a form for the initial item and one blank form will be
displayed.