Commit 14d15093 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

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
parent 3937de4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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::