summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-15 00:07:03 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-15 00:07:03 +0000
commit88632cd7f9242079df33da737ab63c9e5da35b2e (patch)
tree01187c1671cfb47c55dc45a8513c27fe1006b47c /docs
parent1e57d6ccf0c0d005926b8620f34ecf69189eb2e9 (diff)
Fixed #4547 -- Included a fix missed in [5468].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5469 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/newforms.txt2
1 files changed, 1 insertions, 1 deletions
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
~~~~~~~~~~~~~~~~