Commit a9703edc authored by Simeon Visser's avatar Simeon Visser Committed by Tim Graham
Browse files

[1.5.X] Fixed #20397 - Cleaned up issue with quotation marks in documentation

Backport of b9efc03e from master
parent 18a2fb19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]