Fixed #456 -- Fixed minor typo in docs/overview.txt. Thanks, eugene@lazutkin.com

git-svn-id: http://code.djangoproject.com/svn/django/trunk@621 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-04 18:24:23 +00:00
parent fc9d457686
commit 65bab4b824
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ solving two years' worth of database-schema problems. Here's a quick example::
return self.full_name
class Article(meta.Model):
pub_date = meta.DateTimeField)
pub_date = meta.DateTimeField()
headline = meta.CharField(maxlength=200)
article = meta.TextField()
reporter = meta.ForeignKey(Reporter)