From c4ad3dede18e6e279d73ffac7095e46fddb90269 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Tue, 12 Jan 2010 14:04:04 +0000 Subject: [PATCH] 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 --- docs/ref/models/instances.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/instances.txt b/docs/ref/models/instances.txt index 487ec33f5e7..7910d242c02 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.