summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimeon Visser <simeon87@gmail.com>2013-05-12 20:24:48 +0100
committerTim Graham <timograham@gmail.com>2013-05-12 20:16:31 -0400
commita9703edc618d90d2e08122b481608e3dafc3ab63 (patch)
treecff238e000affed78cb6290869fecb965c09a264
parent18a2fb19074ce6789639b62710c279a711dabf97 (diff)
[1.5.X] Fixed #20397 - Cleaned up issue with quotation marks in documentation
Backport of b9efc03e6d from master
-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 ca2e64a8c5..a11362df34 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -328,7 +328,7 @@ Use the ``reverse()`` method to reverse the order in which a queryset's
elements are returned. Calling ``reverse()`` a second time restores the
ordering back to the normal direction.
-To retrieve the ''last'' five items in a queryset, you could do this::
+To retrieve the "last" five items in a queryset, you could do this::
my_queryset.reverse()[:5]