From 930929e2b9f371061d00dfb8b6db215174c89cf2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 6 Jul 2006 14:23:37 +0000 Subject: [PATCH] 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 --- docs/forms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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