summaryrefslogtreecommitdiff
path: root/docs/ref
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:33 -0400
commit8cef9a57992347275bbaf69f8d120b476fa0d0a9 (patch)
tree71317c18365ea1ea15b4569a53b4256f7d06a8d3 /docs/ref
parent9a2c2b7a68eceb1fd9cdf7f672a8527cddf06b98 (diff)
[2.0.x] Fixed typo in docs/ref/models/querysets.txt.
Backport of 3bd69b126115102a4630354c876e6c7cc2d68f8f from master
Diffstat (limited to 'docs/ref')
-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 0651a5bae2..2e8b53debf 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -1100,7 +1100,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: