summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJozef <knaperek@users.noreply.github.com>2017-10-17 16:07:20 +0200
committerTim Graham <timograham@gmail.com>2017-10-17 10:07:20 -0400
commit3bd69b126115102a4630354c876e6c7cc2d68f8f (patch)
tree27e52b904d48e96568e72c1a159a52473590a6a1 /docs
parent346eb328617ada9c65f5c9ded2e2914f3dcc04c9 (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 214e18b376..9e19eff7c5 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1078,7 +1078,7 @@ one for the restaurants, one for the pizzas, and one for the toppings.
This will fetch the best pizza and all the toppings for the best pizza for each
restaurant. This will be done in 3 database queries - one for the restaurants,
-one for the 'best pizzas', and one for one for the toppings.
+one for the 'best pizzas', and one for the toppings.
Of course, the ``best_pizza`` relationship could also be fetched using
``select_related`` to reduce the query count to 2: