diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index 383284a..d35759e 100644
a
|
b
|
As with regular formsets, it's possible to :ref:`specify initial data
|
861 | 861 | parameter when instantiating the model formset class returned by |
862 | 862 | :func:`~django.forms.models.modelformset_factory`. However, with model |
863 | 863 | formsets, the initial values only apply to extra forms, those that aren't |
864 | | attached to an existing model instance. |
| 864 | attached to an existing model instance. If the extra forms with initial data |
| 865 | aren't changed by the user, they won't be validated or saved. |
865 | 866 | |
866 | 867 | .. _saving-objects-in-the-formset: |
867 | 868 | |