summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-07-27 23:27:16 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-07-27 23:27:16 +0000
commitde9e2ae5bb81a4c227e48bc0199fd3734ccba95c (patch)
tree3c82d760a9637ed4b8b8c8bce65de096c4f5299e /docs
parentfdff91ac2dc91f25d2162ca83e5027ecd733884e (diff)
Removing another mention of manipulators
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8123 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/email.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/email.txt b/docs/email.txt
index 7f2eef6fc7..e54620c818 100644
--- a/docs/email.txt
+++ b/docs/email.txt
@@ -179,7 +179,7 @@ from the request's POST data, sends that to admin@example.com and redirects to
return HttpResponse('Invalid header found.')
return HttpResponseRedirect('/contact/thanks/')
else:
- # In reality we'd use a manipulator
+ # In reality we'd use a form class
# to get proper validation errors.
return HttpResponse('Make sure all fields are entered and valid.')