summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2010-01-12 14:04:04 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2010-01-12 14:04:04 +0000
commitc4ad3dede18e6e279d73ffac7095e46fddb90269 (patch)
treec3071422be625c59ceb7df1afeafb3e19360554c /docs/ref
parentd83769f8dcc821a62bcd4f2e6092c2898e0e2b1a (diff)
Fixed #12586. Corrected a typo in the validation docs. Thanks, phyfus.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12209 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/instances.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt
index 487ec33f5e..7910d242c0 100644
--- a/docs/ref/models/instances.txt
+++ b/docs/ref/models/instances.txt
@@ -59,7 +59,7 @@ compatibility.)
Example::
try:
- article.full_validate()
+ article.full_clean()
except ValidationError, e:
# Do something based on the errors contained in e.error_dict.
# Display them to a user, or handle them programatically.