summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-16 03:37:01 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-16 03:37:01 +0000
commit17d54d1d9ef6d0f07b5527f54761785988d5fcf9 (patch)
tree66a8c446a837890ea149115590244b7c5ffb072d
parent6b870c136bc87cb7b284301ee9eb0560cf16f66d (diff)
downloaddjango-17d54d1d9ef6d0f07b5527f54761785988d5fcf9.tar.gz
Fixed #808 -- Fixed typo in docs/forms.txt. Thanks, limodou
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1263 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/forms.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/forms.txt b/docs/forms.txt
index 969ebd428d..8d2f2ead9c 100644
--- a/docs/forms.txt
+++ b/docs/forms.txt
@@ -389,7 +389,7 @@ You use this custom manipulator exactly as you would use an auto-generated one.
Here's a simple function that might drive the above form::
def contact_form(request):
- manipulator = ContactFormManipulator()
+ manipulator = ContactManipulator()
if request.POST:
new_data = request.POST.copy()
errors = manipulator.get_validation_errors(new_data)