summaryrefslogtreecommitdiff
path: root/docs/topics/db/aggregation.txt
diff options
context:
space:
mode:
authorDaniel Musketa <daniel@musketa.de>2019-04-13 12:35:31 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-13 12:35:31 +0200
commitba726067604ce5a8ca3919edf653496722b433ab (patch)
treef38ed15b7fd0a30de7f376376ad00075787c6f88 /docs/topics/db/aggregation.txt
parent571ab44e8a8936014c22e7eebe4948d9611fd7ce (diff)
downloaddjango-ba726067604ce5a8ca3919edf653496722b433ab.tar.gz
Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt.
Diffstat (limited to 'docs/topics/db/aggregation.txt')
-rw-r--r--docs/topics/db/aggregation.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt
index e7d30b9d82..505b3adf91 100644
--- a/docs/topics/db/aggregation.txt
+++ b/docs/topics/db/aggregation.txt
@@ -354,8 +354,8 @@ If you need two annotations with two separate filters you can use the
``filter`` argument with any aggregate. For example, to generate a list of
authors with a count of highly rated books::
- >>> highly_rated = Count('books', filter=Q(books__rating__gte=7))
- >>> Author.objects.annotate(num_books=Count('books'), highly_rated_books=highly_rated)
+ >>> highly_rated = Count('book', filter=Q(book__rating__gte=7))
+ >>> Author.objects.annotate(num_books=Count('book'), highly_rated_books=highly_rated)
Each ``Author`` in the result set will have the ``num_books`` and
``highly_rated_books`` attributes.