From 2a256270b30ab53c9de01e70aca4f05b360a3861 Mon Sep 17 00:00:00 2001 From: Stephen Sawchuk Date: Mon, 25 Aug 2014 15:59:52 -0400 Subject: [PATCH] datastore: docs: pagination example typo. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a87fdc76c6c..8578c97866b 100644 --- a/README.md +++ b/README.md @@ -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)