From 46120b86e3034be921397b2ad35ab130d0f361fb Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 13 Jan 2006 15:01:16 +0000 Subject: [PATCH] Fixed #1211 -- Fixed tiny typo in docs/forms.txt. Thanks, paolo git-svn-id: http://code.djangoproject.com/svn/django/trunk@1943 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/forms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/forms.txt b/docs/forms.txt index 60e5c96971..5df942c15f 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -98,7 +98,7 @@ view has a number of problems: because that field is required. Ugly. * Even if you *do* perform validation, there's still no way to give that - information to the user is any sort of useful way. + information to the user in any sort of useful way. * You'll have to separately create a form (and view) that submits to this page, which is a pain and is redundant.