summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2007-12-02 20:43:38 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2007-12-02 20:43:38 +0000
commitab75953bbbca8819d859067be8e3e114546be269 (patch)
treeb3f34d3bda9a069981effcdb1d877d9494959414 /docs
parent2881007ad469900e9b7178a58a052f29cb6c6849 (diff)
Fixed in typo in modelforms docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6848 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/modelforms.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modelforms.txt b/docs/modelforms.txt
index 5e94128ba3..8580fe1dbd 100644
--- a/docs/modelforms.txt
+++ b/docs/modelforms.txt
@@ -24,7 +24,7 @@ For example::
... model = Article
# Creating a form to add an article.
- >>> article\ = Article()
+ >>> article = Article()
>>> form = ArticleForm(article)
# Creating a form to change an existing article.