diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index 832a3ac..bc7c5ba 100644
a
|
b
|
parameter when declaring the form field::
|
443 | 443 | class Meta: |
444 | 444 | model = Article |
445 | 445 | |
| 446 | Furthermore, you have to make sure that the contents of the form field can |
| 447 | be used to set the contents of the corresponding model field. When they are |
| 448 | not compatible, you will get a ``ValueError`` as no implicit conversion takes |
| 449 | place. |
| 450 | |
446 | 451 | See the :doc:`form field documentation </ref/forms/fields>` for more information |
447 | 452 | on fields and their arguments. |
448 | 453 | |