From 88632cd7f9242079df33da737ab63c9e5da35b2e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 15 Jun 2007 00:07:03 +0000 Subject: [PATCH] Fixed #4547 -- Included a fix missed in [5468]. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5469 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/newforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/newforms.txt b/docs/newforms.txt index 5fe6f95899..1511791a7d 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -1293,7 +1293,7 @@ dictionary. The previous paragraph means that if you are overriding ``Form.clean()``, you should iterate through ``self.cleaned_data.items()``, possibly considering the ``_errors`` dictionary attribute on the form as well. In this way, you will -already know which fields have passed thei individual validation requirements. +already know which fields have passed their individual validation requirements. A simple example ~~~~~~~~~~~~~~~~