Fixed typo in docs/newforms.txt. Thanks, Jeff Hilyard

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4526 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-02-15 20:55:37 +00:00
parent 1ce1442d95
commit c96d155589
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ classes::
... instrument = CharField()
>>> class BeatleForm(PersonForm, InstrumentForm):
... haircut_type = CharField()
>>> b = Beatle(auto_id=False)
>>> b = BeatleForm(auto_id=False)
>>> print b.as_ul()
<li>First name: <input type="text" name="first_name" /></li>
<li>Last name: <input type="text" name="last_name" /></li>