From 456534dda91caad152695457398a844244072f97 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 30 Jan 2011 19:09:44 +0000 Subject: [PATCH] Fixed #15191 - typo in form validation docs; thanks berto for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15372 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- 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 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::