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

Backport of 6ff826e12e from master
This commit is contained in:
Dan Fellin 2015-03-11 17:21:08 -06:00 committed by Tim Graham
parent e0e2df412f
commit 9f39715509
1 changed files with 1 additions and 1 deletions

View File

@ -690,7 +690,7 @@ and values from an attached model instance. For example::
>>> article.headline
'My headline'
>>> form = ArticleForm(initial={'headline': 'Initial headline'), instance=article)
>>> form['pub_date'].value()
>>> form['headline'].value()
'Initial headline'
.. _modelforms-factory: