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):