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
This commit is contained in:
Adrian Holovaty 2006-07-06 14:23:37 +00:00
parent c63dcdda37
commit 930929e2b9
1 changed files with 1 additions and 1 deletions

View File

@ -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