diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index e8c4d6ffc0..6205d798c5 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -251,20 +251,6 @@ The model's ``clean()`` method will be called before any uniqueness checks are made. See :ref:`Validating objects ` for more information on the model's ``clean()`` hook. -Considerations regarding fields' ``error_messages`` -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -Error messages defined at the -:attr:`form field ` level or at the -:ref:`form Meta ` level always take -precedence over the error messages defined at the -:attr:`model field ` level. -Error messages defined on :attr:`model fields -` are only used when the -``ValidationError`` is raised during the :ref:`model validation -` step and no corresponding error messages are defined at -the form level. - The ``save()`` method ---------------------