summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-10 11:17:33 -0400
committerTim Graham <timograham@gmail.com>2014-09-10 11:17:54 -0400
commit2e749f247c1f989c6fe794299f1db27627866bce (patch)
treedb2df41685f20830aa04f342b31ee5c7ad2381bc
parent35cd0854f9bf1e8837397b91552f9efddec24158 (diff)
[1.7.x] Fixed typo in topics/forms/formsets.txt
Backport of e265112cd1 from master
-rw-r--r--docs/topics/forms/formsets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index ae97d3256e..576f32a6de 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -105,7 +105,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.