From d55b361ac4dc0fb291855ada46054565ab33636e Mon Sep 17 00:00:00 2001
From: Russell Keith-Magee <russell@keith-magee.com>
Date: Thu, 15 Jan 2009 22:26:00 +0000
Subject: [PATCH] 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
---
 docs/topics/db/aggregation.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)