Django

Code

Changeset 5720

Show
Ignore:
Timestamp:
07/16/07 17:29:09 (1 year ago)
Author:
gwilson
Message:

Fixed #4851 -- Fixed description of an example query in db-api docs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r5709 r5720  
    410410    Entry.objects.all()[:5] 
    411411 
    412 This returns the fifth through tenth objects (``OFFSET 5 LIMIT 5``):: 
     412This returns the sixth through tenth objects (``OFFSET 5 LIMIT 5``):: 
    413413 
    414414    Entry.objects.all()[5:10]