diff --git a/docs/db-api.txt b/docs/db-api.txt index 64b4a1a841..8e664ce3c1 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -409,7 +409,7 @@ For example, this returns the first 5 objects (``LIMIT 5``):: Entry.objects.all()[:5] -This returns the fifth through tenth objects (``OFFSET 5 LIMIT 5``):: +This returns the sixth through tenth objects (``OFFSET 5 LIMIT 5``):: Entry.objects.all()[5:10]