diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index 0ca3774..4e1e826 100644
a
|
b
|
The ``is_valid()`` method and ``errors``
|
196 | 196 | ---------------------------------------- |
197 | 197 | |
198 | 198 | The first time you call ``is_valid()`` or access the ``errors`` attribute of a |
199 | | ``ModelForm`` triggers :ref:`form validation <form-and-field-validation>` as |
200 | | well as :ref:`model validation <validating-objects>`. This has the side-effect |
201 | | of cleaning the model you pass to the ``ModelForm`` constructor. For instance, |
202 | | calling ``is_valid()`` on your form will convert any date fields on your model |
203 | | to actual date objects. |
204 | | |
| 199 | ``ModelForm``, :ref:`form validation <form-and-field-validation>` and |
| 200 | :ref:`model validation <validating-objects>` are triggered. This process |
| 201 | updates the form's model instance in place. If the form validation fails, only |
| 202 | some of the updates may be applied. For this reason, you'll probably want to |
| 203 | avoid reusing the model instance. |
205 | 204 | |
206 | 205 | The ``save()`` method |
207 | 206 | --------------------- |