From 14d15093bcf2b37b76d9dda7edc680ba3dc4d49e Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 15 Jan 2009 14:07:53 +0000 Subject: [PATCH] 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 --- 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 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::