diff options
| author | Jannis Leidel <jannis@leidel.info> | 2011-08-13 11:58:19 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2011-08-13 11:58:19 +0000 |
| commit | 566b3295fa77e9755613ac36e0d73950938cc577 (patch) | |
| tree | f35f9f866e0b32cedf0904c142994be70d0ea074 /docs/topics/forms | |
| parent | 1abafe696e44522e8d71c11a53501aeb70a75d38 (diff) | |
Fixed #16621 -- Fixed lots of typos in the docs. Thanks, Bernhard Essl.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16615 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/forms')
| -rw-r--r-- | docs/topics/forms/modelforms.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index 3492f4ed76..07c7b02c19 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -713,7 +713,7 @@ Overiding ``clean()`` on a ``model_formset`` Just like with ``ModelForms``, by default the ``clean()`` method of a ``model_formset`` will validate that none of the items in the formset violate the unique constraints on your model (either ``unique``, ``unique_together`` or -``unique_for_date|month|year``). If you want to overide the ``clean()`` method +``unique_for_date|month|year``). If you want to override the ``clean()`` method on a ``model_formset`` and maintain this validation, you must call the parent class's ``clean`` method:: |
