From c99d9356009a0a420fc366af74161a78bdae2612 Mon Sep 17 00:00:00 2001 From: nessita <124304+nessita@users.noreply.github.com> Date: Thu, 20 Jul 2023 14:45:44 -0300 Subject: [PATCH] [4.2.x] Fixed typo in docs/ref/models/querysets.txt. Removed assignment in example for Blog annotation to match shown result. Backport of addbc90049083f1d5f7ac138ed00111b71a75233 from main --- docs/ref/models/querysets.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index dcded8c3c0..a3796790a2 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -2830,7 +2830,7 @@ number of authors that have contributed blog entries: .. code-block:: pycon >>> from django.db.models import Count - >>> q = Blog.objects.aggregate(Count("entry")) + >>> Blog.objects.aggregate(Count("entry")) {'entry__count': 16} By using a keyword argument to specify the aggregate function, you can @@ -2838,7 +2838,7 @@ control the name of the aggregation value that is returned: .. code-block:: pycon - >>> q = Blog.objects.aggregate(number_of_entries=Count("entry")) + >>> Blog.objects.aggregate(number_of_entries=Count("entry")) {'number_of_entries': 16} For an in-depth discussion of aggregation, see :doc:`the topic guide on