diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index caff03c..c9e7a46 100644
a
|
b
|
of cleaning the model you pass to the ``ModelForm`` constructor. For instance,
|
202 | 202 | calling ``is_valid()`` on your form will convert any date fields on your model |
203 | 203 | to actual date objects. If form validation fails, only some of the updates |
204 | 204 | may be applied. For this reason, you'll probably want to avoid reusing the |
205 | | model instance. |
| 205 | model instance passed to the form. |
206 | 206 | |
207 | 207 | |
208 | 208 | The ``save()`` method |