[1.8.x] Fixed typo in docs/ref/forms/validation.txt.

Backport of 1aa8bf9b43 from master
This commit is contained in:
Andrew Plummer 2015-12-09 10:43:20 +00:00 committed by Tim Graham
parent d34de856e5
commit 4eb9a1cf2a
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ overridden:
* The form subclass's ``clean()`` method can perform validation that requires * The form subclass's ``clean()`` method can perform validation that requires
access to multiple form fields. This is where you might put in checks such as access to multiple form fields. This is where you might put in checks such as
"if field ``A``is supplied, field ``B`` must contain a valid email address". "if field ``A`` is supplied, field ``B`` must contain a valid email address".
This method can return a completely different dictionary if it wishes, which This method can return a completely different dictionary if it wishes, which
will be used as the ``cleaned_data``. will be used as the ``cleaned_data``.