summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2013-11-20 10:49:08 +0100
committerBaptiste Mispelon <bmispelon@gmail.com>2013-11-20 10:52:49 +0100
commited8814b24a18cecdeb2631281bceb2f8432a2546 (patch)
tree4da66f520d5bd10081a53c64aab40509fdbcb02d
parent2fb6dbe81dfe027872982642181f5a86bb1f91dd (diff)
Fixed #21468 -- Removed a ModelForm bit that doesn't apply to 1.5.x.
The bit was incorrectly backported with 3860d5e8f814e26baf4deee9258392cd34a4b456. Thanks to trac user direx for the report and to Loic Bistuer for his help.
-rw-r--r--docs/topics/forms/modelforms.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index b032366fd0..9fb5c1c0cb 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -205,9 +205,8 @@ when calling :meth:`~django.forms.Form.is_valid()` or accessing the
``full_clean()``, although you will typically not use the latter method in
practice.
-``Model`` validation (:meth:`Model.full_clean()
-<django.db.models.Model.full_clean()>`) is triggered from within the form
-validation step, right after the form's ``clean()`` method is called.
+``Model`` validation is triggered from within the form validation step,
+right after the form's ``clean()`` method is called.
.. warning::