summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorhesham hatem <80004117+Hesham942@users.noreply.github.com>2025-03-12 23:09:04 +0200
committerGitHub <noreply@github.com>2025-03-12 18:09:04 -0300
commite03440291b0599934da73b7dfbd2ccf7ec7270d8 (patch)
tree5d05d5f8a315cf81f91865c69ccd62034c5f8da7 /docs
parent27b68bcadf1ab2e9f7fd223aed42db352ccdc62d (diff)
Fixed #36249 -- Fixed typo in docs/topics/db/queries.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/queries.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/queries.txt b/docs/topics/db/queries.txt
index 7e3338eaea..2c2314198f 100644
--- a/docs/topics/db/queries.txt
+++ b/docs/topics/db/queries.txt
@@ -1179,7 +1179,7 @@ To query for missing keys, use the ``isnull`` lookup:
... },
... )
<Dog: Shep>
- >>> Dogs.objects.annotate(
+ >>> Dog.objects.annotate(
... first_breed=KT("data__breed__1"), owner_name=KT("data__owner__name")
... ).filter(first_breed__startswith="lhasa", owner_name="Bob")
<QuerySet [<Dog: Shep>]>