diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2009-01-15 22:26:00 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2009-01-15 22:26:00 +0000 |
| commit | d55b361ac4dc0fb291855ada46054565ab33636e (patch) | |
| tree | dd8cfeb6c4208624774410443336be1b9ba4a92e | |
| parent | acfe5cc880fe6d11f1c7e0b259be9a885d5d8e66 (diff) | |
Corrected another typo in aggregation docs. Thanks to Ivan Sagalaev for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9752 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/topics/db/aggregation.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index a5dfc57f87..15dcb41eb9 100644 --- a/docs/topics/db/aggregation.txt +++ b/docs/topics/db/aggregation.txt @@ -39,7 +39,7 @@ used to track the inventory for a series of online bookstores: rating = models.FloatField() authors = models.ManyToManyField(Author) publisher = models.ForeignKey(Publisher) - pubdate = models.DateField + pubdate = models.DateField() class Store(models.Model): name = models.CharField(max_length=300) |
