From b9efc03e6d9cf602203d4808d4e171e19014a25f Mon Sep 17 00:00:00 2001 From: Simeon Visser Date: Sun, 12 May 2013 20:24:48 +0100 Subject: [PATCH] Fixed #20397 - Cleaned up issue with quotation marks in documentation --- 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 d27214a66c..96e189fa74 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]