From e265112cd11c40b43ef8cf255ac5280e4d2e182a Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 10 Sep 2014 11:17:33 -0400 Subject: [PATCH] Fixed typo in topics/forms/formsets.txt --- docs/topics/forms/formsets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index c4feebe27d..270f8ce83c 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.