Fixed #8788: fixed a few typoes in [8805]. Thanks, Matthew Flanagan and mir.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8872 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2008-09-02 19:33:56 +00:00
parent 7a9b55ddc4
commit f6a3652eb2
2 changed files with 6 additions and 6 deletions

View file

@ -337,11 +337,11 @@ parameter when declaring the form field::
Overriding the clean() method
-----------------------------
You can overide the ``clean()`` method on a model form to provide additional
validation in the same way you can on a normal form. However, by default the
You can override the ``clean()`` method on a model form to provide additional
validation in the same way you can on a normal form. However, by default the
``clean()`` method validates the uniqueness of fields that are marked as unique
on the model, and those marked as unque_together, if you would like to overide
the ``clean()`` method and maintain the default validation you must call the
or unique_together on the model. Therefore, if you would like to override
the ``clean()`` method and maintain the default validation, you must call the
parent class's ``clean()`` method.
Form inheritance