From ab9c886459e179a7741efd3be440653afe260dff Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Sun, 31 Aug 2014 20:06:38 -0400 Subject: [PATCH] Fixed #23391 -- Removed an erroneous backtip from the form's documentation. Thanks to Trac alias nessita for the report. --- docs/ref/forms/validation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt index 676f176910f..d2d20fb6fe3 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_()``. 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.