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)