summaryrefslogtreecommitdiff
path: root/docs/ref/forms
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-09 09:30:54 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-09 09:30:54 +0000
commitede4f94621e1e12d219fa90d718e618a9d21bc06 (patch)
tree31aac1590604477110a2b4155ba73355f7c425d2 /docs/ref/forms
parent0b7b74432a19b31107f333ce7fc1ff6ca4a6ed76 (diff)
Fixed #9239 -- Somebody read my form validation docs from r9177 and found a
typo in them. I guess that was predictable. Thanks, Berry Groenendijk git-svn-id: http://code.djangoproject.com/svn/django/trunk@9217 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/forms')
-rw-r--r--docs/ref/forms/validation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/validation.txt b/docs/ref/forms/validation.txt
index 412447b74a..af3b7f23f3 100644
--- a/docs/ref/forms/validation.txt
+++ b/docs/ref/forms/validation.txt
@@ -260,7 +260,7 @@ here and leaving it up to you and your designers to work out what works
effectively in your particular situation. Our new code (replacing the previous
sample) looks like this::
- from django.forms.utils import ErrorList
+ from django.forms.util import ErrorList
class ContactForm(forms.Form):
# Everything as before.