summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-06 14:23:37 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-06 14:23:37 +0000
commit930929e2b9f371061d00dfb8b6db215174c89cf2 (patch)
treeeb2840d1d7277ac5d537e8820606b046e726a5b7 /docs
parentc63dcdda372d4d8a37abd39432deb62b8d4b1d23 (diff)
Fixed small typo in docs/forms.txt. Thanks, Antonio Cavedoni
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3280 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/forms.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/forms.txt b/docs/forms.txt
index 5026bc1bab..2fbe373744 100644
--- a/docs/forms.txt
+++ b/docs/forms.txt
@@ -50,7 +50,7 @@ model that "knows" how to create or modify instances of that model and how to
validate data for the object. Manipulators come in two flavors:
``AddManipulators`` and ``ChangeManipulators``. Functionally they are quite
similar, but the former knows how to create new instances of the model, while
-the later modifies existing instances. Both types of classes are automatically
+the latter modifies existing instances. Both types of classes are automatically
created when you define a new class::
>>> from mysite.myapp.models import Place