diff options
| author | Tim Graham <timograham@gmail.com> | 2013-05-12 17:16:04 -0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-05-12 17:16:04 -0700 |
| commit | b1f74670cc9b575571f8820cad800fdfd99e9258 (patch) | |
| tree | 8b6f83a868eafbeff7914ee3902982e3d161ccfc | |
| parent | 956973ca6c47219d5dc3c645bc34af8fb58b8f24 (diff) | |
| parent | b9efc03e6d9cf602203d4808d4e171e19014a25f (diff) | |
Merge pull request #1058 from svisser/ticket_20397
Fixed #20397 - Cleaned up issue with quotation marks in documentation
| -rw-r--r-- | docs/ref/models/querysets.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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] |
