From 26794f6657a9d201d47a0748a449a94ad5d7c66e Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Fri, 27 May 2016 20:31:33 +0600 Subject: [PATCH] Fixed typo in docs/topics/forms/modelforms.txt --- docs/topics/forms/modelforms.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index b550202dcbe..f7843e9dc2b 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -642,7 +642,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):