diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-18 14:15:27 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-06-18 14:15:27 +0000 |
| commit | 82ffb6747f63f5e267134c56c6b5d707c5e63049 (patch) | |
| tree | 9dbf23a049c82e30d45cd7b6a18590fb3c4d883b /docs | |
| parent | 7ccd095755f0d6d9187bf44563bbbe62cc475078 (diff) | |
[1.0.X] Fixed #11318 -- Grammar correction in modelform docs. Thanks to seemant for the report.
Merge of r11047 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11059 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -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 d016dc79b5..71d222070b 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -579,7 +579,7 @@ Just like with ``ModelForms``, by default the ``clean()`` method of a the unique constraints on your model (either ``unique``, ``unique_together`` or ``unique_for_date|month|year``). If you want to overide the ``clean()`` method on a ``model_formset`` and maintain this validation, you must call the parent -classes ``clean`` method:: +class's ``clean`` method:: class MyModelFormSet(BaseModelFormSet): def clean(self): |
