Skip to content

Commit 48ce204

Browse files
committed
[1.11.x] Fixed typo in docs/ref/models/querysets.txt.
Backport of 0877989 from master
1 parent 109fd94 commit 48ce204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ref/models/querysets.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3221,7 +3221,7 @@ as the string based lookups passed to
32213221
# This will only execute two queries regardless of the number of Question
32223222
# and Choice objects.
32233223
>>> Question.objects.prefetch_related(Prefetch('choice_set')).all()
3224-
<QuerySet [<Question: Question object>]>
3224+
<QuerySet [<Question: What's up?>]>
32253225

32263226
The ``queryset`` argument supplies a base ``QuerySet`` for the given lookup.
32273227
This is useful to further filter down the prefetch operation, or to call

0 commit comments

Comments
 (0)