Merge pull request #1058 from svisser/ticket_20397

Fixed #20397 - Cleaned up issue with quotation marks in documentation
This commit is contained in:
Tim Graham 2013-05-12 17:16:04 -07:00
commit b1f74670cc
1 changed files with 1 additions and 1 deletions

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]