From de9e2ae5bb81a4c227e48bc0199fd3734ccba95c Mon Sep 17 00:00:00 2001 From: James Bennett Date: Sun, 27 Jul 2008 23:27:16 +0000 Subject: [PATCH] Removing another mention of manipulators git-svn-id: http://code.djangoproject.com/svn/django/trunk@8123 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/email.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/email.txt b/docs/email.txt index 7f2eef6fc73..e54620c8184 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.')