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

Backport of b9efc03e6d from master
This commit is contained in:
Simeon Visser 2013-05-12 20:24:48 +01:00 committed by Tim Graham
parent 18a2fb1907
commit a9703edc61
1 changed files with 1 additions and 1 deletions
docs/ref/models

View File

@ -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]