mirror of https://github.com/django/django.git
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:
parent
acfe5cc880
commit
d55b361ac4
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue