summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-09 12:48:24 -0400
committerTim Graham <timograham@gmail.com>2017-06-09 12:48:24 -0400
commit0877989c94130079930419e867ff55fa1fb4f5a0 (patch)
tree994b28a9348c9d29004c04f6e6c8f72f2a8ae52c /docs
parent108ff788cbcd0e1f492d1494dc95e7b2165340fd (diff)
Fixed typo in docs/ref/models/querysets.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index b8868f3a72..a9006a14a9 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -3217,7 +3217,7 @@ as the string based lookups passed to
# This will only execute two queries regardless of the number of Question
# and Choice objects.
>>> Question.objects.prefetch_related(Prefetch('choice_set')).all()
- <QuerySet [<Question: Question object>]>
+ <QuerySet [<Question: What's up?>]>
The ``queryset`` argument supplies a base ``QuerySet`` for the given lookup.
This is useful to further filter down the prefetch operation, or to call