[1.9.x] Fixed typo in docs/topics/forms/modelforms.txt

Backport of 26794f6657a9d201d47a0748a449a94ad5d7c66e from master
This commit is contained in:
Sergey Fedoseev 2016-05-27 20:31:33 +06:00 committed by Tim Graham
parent db056b2a63
commit 0f1d5aef9d

View File

@ -650,7 +650,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):