Commit d55b361a authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

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
parent acfe5cc8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)