summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2014-08-31 20:06:38 -0400
committerSimon Charette <charette.s@gmail.com>2014-08-31 20:11:57 -0400
commite42a82edf2acbe1cb32757072dc4965380f40e09 (patch)
tree1d518732fab24ac484b21d9e0aca5173ce6bd471
parent074b6785e09040eb6fd3b9bd3e4bf0cc6e1588f0 (diff)
[1.7.x] Fixed #23391 -- Removed an erroneous backtip from the form's documentation.
Thanks to Trac alias nessita for the report. Backport of ab9c886459 from master
-rw-r--r--docs/ref/forms/validation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 54655efc51..ea74adb676 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -100,7 +100,7 @@ These methods are run in the order given above, one field at a time. That is,
for each field in the form (in the order they are declared in the form
definition), the ``Field.clean()`` method (or its override) is run, then
``clean_<fieldname>()``. Finally, once those two methods are run for every
-field, the `:meth:`Form.clean()` method, or its override, is executed whether
+field, the :meth:`Form.clean()` method, or its override, is executed whether
or not the previous methods have raised errors.
Examples of each of these methods are provided below.