Skip to content

Commit

Permalink
datastore: docs: pagination example typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenplusplus committed Aug 25, 2014
1 parent bcba835 commit 2a25627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ Pagination allows you to set an offset, limit and starting cursor to a query.

~~~~ js
var q = ds.createQuery('Company')
.start(cursorToken); // continue to retrieve results from the given cursor.
.start(cursorToken) // continue to retrieve results from the given cursor.
.offset(100) // start from the 101th result after start cursor.
.limit(10) // return only 10 results
.limit(10); // return only 10 results
~~~~

#### Allocating IDs (ID generation)
Expand Down

0 comments on commit 2a25627

Please sign in to comment.