Fixed in typo in modelforms docs.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6848 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2007-12-02 20:43:38 +00:00
parent 2881007ad4
commit ab75953bbb
1 changed files with 1 additions and 1 deletions

View File

@ -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.