Fixed #1189 -- Fixed typo in docs/forms.txt 'Place' model example. Thanks, Brian Ray

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-08 18:08:22 +00:00
parent 0b6b89f222
commit bfd5ce8c41
1 changed files with 5 additions and 5 deletions

View File

@ -26,11 +26,11 @@ this document, we'll be working with the following model, a "place" object::
)
class Place(meta.Model):
name = meta.CharField(maxlength=100),
address = meta.CharField(maxlength=100, blank=True),
city = meta.CharField(maxlength=50, blank=True),
state = meta.USStateField(),
zip_code = meta.CharField(maxlength=5, blank=True),
name = meta.CharField(maxlength=100)
address = meta.CharField(maxlength=100, blank=True)
city = meta.CharField(maxlength=50, blank=True)
state = meta.USStateField()
zip_code = meta.CharField(maxlength=5, blank=True)
place_type = meta.IntegerField(choices=PLACE_TYPES)
class META:
admin = meta.Admin()