Skip to content

Commit

Permalink
Corrected another typo in aggregation docs. Thanks to Ivan Sagalaev f…
Browse files Browse the repository at this point in the history
…or the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9752 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Jan 15, 2009
1 parent acfe5cc commit d55b361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/db/aggregation.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ used to track the inventory for a series of online bookstores:
rating = models.FloatField() rating = models.FloatField()
authors = models.ManyToManyField(Author) authors = models.ManyToManyField(Author)
publisher = models.ForeignKey(Publisher) publisher = models.ForeignKey(Publisher)
pubdate = models.DateField pubdate = models.DateField()


class Store(models.Model): class Store(models.Model):
name = models.CharField(max_length=300) name = models.CharField(max_length=300)
Expand Down

0 comments on commit d55b361

Please sign in to comment.