diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2016-05-27 20:31:33 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-05-27 10:31:53 -0400 |
| commit | f38e950685b912fd54226612c20bc538f4fa7679 (patch) | |
| tree | cbb20a897e56c41c622906b3e9fa19a7ec0a6b00 /docs | |
| parent | 06db2b88cfa441a0af3b07c5f192f9f00b46716c (diff) | |
[1.10.x] Fixed typo in docs/topics/forms/modelforms.txt
Backport of 26794f6657a9d201d47a0748a449a94ad5d7c66e from master
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 b5ebbc94ce..146b7503d0 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -646,7 +646,7 @@ This creates a form that behaves identically to ``ArticleForm``, except there's some extra validation and cleaning for the ``pub_date`` field. You can also subclass the parent's ``Meta`` inner class if you want to change -the ``Meta.fields`` or ``Meta.excludes`` lists:: +the ``Meta.fields`` or ``Meta.exclude`` lists:: >>> class RestrictedArticleForm(EnhancedArticleForm): ... class Meta(ArticleForm.Meta): |
