From 17d54d1d9ef6d0f07b5527f54761785988d5fcf9 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Wed, 16 Nov 2005 03:37:01 +0000
Subject: [PATCH] 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
---
 docs/forms.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)