diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-09-04 18:24:23 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-09-04 18:24:23 +0000 |
| commit | 65bab4b824650548a29c775641431845c06f8a6f (patch) | |
| tree | 1cc50b44a985dd3f684b18216750d95106b462f5 /docs/overview.txt | |
| parent | fc9d457686b3af85bf94522c4cf4593d2aa711a7 (diff) | |
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
Diffstat (limited to 'docs/overview.txt')
| -rw-r--r-- | docs/overview.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/overview.txt b/docs/overview.txt index f2c5d23fa8..a84a9ea624 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -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) |
