summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
author$ῗἧḡḥ𝐀丂𝓱м𝑒𝑒𝐓 <91828139+ashmeet07@users.noreply.github.com>2026-02-11 18:27:14 +0530
committernessita <124304+nessita@users.noreply.github.com>2026-02-16 16:37:49 -0300
commitfb3a11071aae27ef869d2b029289b9f59cc41128 (patch)
tree863548ea9f6b1ca3f9842f1063ea93693e3cc6c9 /docs/topics
parent08b4dfc5734f5d2fce685eabcd65385a6656db2f (diff)
Fixed #36918 -- Removed double spaces and fixed minor grammar issues in docs.
Co-authored-by: Clifford Gama <cliffygamy@gmail.com>
Diffstat (limited to 'docs/topics')
-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 ba797c0b68..8d8fff0211 100644
--- a/docs/topics/db/aggregation.txt
+++ b/docs/topics/db/aggregation.txt
@@ -734,7 +734,7 @@ To avoid this, you can wrap the non-aggregate expression with
.. code-block:: pycon
- >>> from django.db.models import F, Count, Greatest
+ >>> from django.db.models import AnyValue, F, Count, Greatest
>>> Book.objects.values(
... greatest_pages=Greatest("pages", 600),
... ).annotate(