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
This commit is contained in:
Russell Keith-Magee 2009-01-15 22:26:00 +00:00
parent acfe5cc880
commit d55b361ac4
1 changed files with 1 additions and 1 deletions

View File

@ -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)