Skip to content

Commit a7e175d

Browse files
link constants to constant docs
1 parent 2239bbf commit a7e175d

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

lib/datastore/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ Datastore.int = function(value) {
403403
* {module:datastore#runQuery}, {module:transaction#runQuery}, and
404404
* {module:datastore/query#run} as `info.moreResults`.
405405
*
406-
* There may be more results after the specified end cursor.
406+
* There *may* be more results after the specified end cursor.
407407
*
408408
* @type {string}
409409
*/
@@ -414,8 +414,7 @@ Datastore.MORE_RESULTS_AFTER_CURSOR = 'MORE_RESULTS_AFTER_CURSOR';
414414
* {module:datastore#runQuery}, {module:transaction#runQuery}, and
415415
* {module:datastore/query#run} as `info.moreResults`.
416416
*
417-
* There may be more results after the specified limit. It's possible for this
418-
* to be returned even though there are not actually results after the limit.
417+
* There *may* be more results after the specified limit.
419418
*
420419
* @type {string}
421420
*/

lib/datastore/query.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,12 @@ Query.prototype.offset = function(n) {
291291
* @param {?string} callback.info.endCursor - Use this in a follow-up query to
292292
* begin from where these results ended.
293293
* @param {string} callback.info.moreResults - Datastore responds with one of:
294-
* - `MORE_RESULTS_AFTER_LIMIT`: There *may* be more results after the
295-
* specified limit.
296-
* - `MORE_RESULTS_AFTER_CURSOR`: There *may* be more results after the
297-
* specified end cursor.
298-
* - `NO_MORE_RESULTS`: There are no more results.
294+
*
295+
* - {module:datastore#MORE_RESULTS_AFTER_LIMIT}: There *may* be more
296+
* results after the specified limit.
297+
* - {module:datastore#MORE_RESULTS_AFTER_CURSOR}: There *may* be more
298+
* results after the specified end cursor.
299+
* - {module:datastore#NO_MORE_RESULTS}: There are no more results.
299300
*
300301
* @example
301302
* query.run(function(err, entities, info) {});

lib/datastore/request.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -387,11 +387,12 @@ DatastoreRequest.prototype.insert = function(entities, callback) {
387387
* @param {?string} callback.info.endCursor - Use this in a follow-up query to
388388
* begin from where these results ended.
389389
* @param {string} callback.info.moreResults - Datastore responds with one of:
390-
* - `MORE_RESULTS_AFTER_LIMIT`: There *may* be more results after the
391-
* specified limit.
392-
* - `MORE_RESULTS_AFTER_CURSOR`: There *may* be more results after the
393-
* specified end cursor.
394-
* - `NO_MORE_RESULTS`: There are no more results.
390+
*
391+
* - {module:datastore#MORE_RESULTS_AFTER_LIMIT}: There *may* be more
392+
* results after the specified limit.
393+
* - {module:datastore#MORE_RESULTS_AFTER_CURSOR}: There *may* be more
394+
* results after the specified end cursor.
395+
* - {module:datastore#NO_MORE_RESULTS}: There are no more results.
395396
*
396397
* @example
397398
* //-

0 commit comments

Comments
 (0)