diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 974a5ca251..dc1c4fee32 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -29,9 +29,10 @@ would with a regular form:: -As you can see it only displayed one form. This is because by default the -``formset_factory`` defines one extra form. This can be controlled with the -``extra`` parameter:: +As you can see it only displayed one empty form. The number of empty forms +that is displayed is controlled by the ``extra`` parameter. By default, +``formset_factory`` defines one extra form; the following example will +display two blank forms:: >>> ArticleFormSet = formset_factory(ArticleForm, extra=2)