summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-01-15 14:07:53 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-01-15 14:07:53 +0000
commit14d15093bcf2b37b76d9dda7edc680ba3dc4d49e (patch)
tree93cad80584fb9104e50df5cdef9e7b4db7d6a8e3 /docs
parent3937de4e242527896faa10651abaedc29c829e68 (diff)
Corrected typo in aggregation docs. Thanks to Ivan Sagalaev for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/aggregation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt
index e02859bc2e..a5dfc57f87 100644
--- a/docs/topics/db/aggregation.txt
+++ b/docs/topics/db/aggregation.txt
@@ -167,7 +167,7 @@ in a store, you could use the aggregate::
>>> Store.objects.aggregate(min_price=Min('books__price'), max_price=Min('books__price'))
-Join chains can be as deep as you required. For example, to extract the
+Join chains can be as deep as you require. For example, to extract the
age of the youngest author of any book available for sale, you could
issue the query::