summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-01-30 19:10:16 +0000
committerTimo Graham <timograham@gmail.com>2011-01-30 19:10:16 +0000
commit776bf6e5f7d83d3a9cd41f74277106365280f574 (patch)
tree51db61f10fe4d5c03aa019b2927a4e83ff395a29 /docs
parentd88753066d7d2c74ac0790cbd62eeeff417bf04a (diff)
[1.2.X] Fixed #15191 - typo in form validation docs; thanks berto for the report.
Backport of r15372 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15373 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-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 1c047f246f..d5f40706a1 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -290,7 +290,7 @@ far. So you also need to remember to allow for the fact that the fields you
are wanting to validate might not have survived the initial individual field
checks.
-There are two way to report any errors from this step. Probably the most
+There are two ways to report any errors from this step. Probably the most
common method is to display the error at the top of the form. To create such
an error, you can raise a ``ValidationError`` from the ``clean()`` method. For
example::