From 48ce204488c6cca8ab453a756fa655f0c886533c Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 9 Jun 2017 12:48:24 -0400 Subject: [PATCH] [1.11.x] Fixed typo in docs/ref/models/querysets.txt. Backport of 0877989c94130079930419e867ff55fa1fb4f5a0 from master --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index f86157784d..53e98f9ba6 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -3221,7 +3221,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() - ]> + ]> The ``queryset`` argument supplies a base ``QuerySet`` for the given lookup. This is useful to further filter down the prefetch operation, or to call