diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-02-15 20:55:37 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-02-15 20:55:37 +0000 |
| commit | c96d1555897997676eb7699b8a1752e57a7b1e57 (patch) | |
| tree | 3f92d3c83523a40d8606fb92ca42d645c4d51d50 /docs | |
| parent | 1ce1442d95730e7b4e0d54f971aaeb6cf744f04c (diff) | |
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
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/newforms.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt index c2ede42f5e..33aaf14357 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -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> |
