summaryrefslogtreecommitdiff
path: root/docs/db-api.txt
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-07-16 22:29:09 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-07-16 22:29:09 +0000
commit62f207caef9590b7a0e3268246307caeecd84d57 (patch)
tree9005e756d9e9c444a4a44d15d262113fae414d4c /docs/db-api.txt
parent9a1c21809ed48b0d06c1e2395bf6a7c7b900f96a (diff)
Fixed #4851 -- Fixed description of an example query in `db-api` docs.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5720 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
-rw-r--r--docs/db-api.txt2
1 files changed, 1 insertions, 1 deletions
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]