File tree 3 files changed +14
-13
lines changed 3 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ Datastore.int = function(value) {
403
403
* {module:datastore#runQuery}, {module:transaction#runQuery}, and
404
404
* {module:datastore/query#run} as `info.moreResults`.
405
405
*
406
- * There may be more results after the specified end cursor.
406
+ * There * may* be more results after the specified end cursor.
407
407
*
408
408
* @type {string }
409
409
*/
@@ -414,8 +414,7 @@ Datastore.MORE_RESULTS_AFTER_CURSOR = 'MORE_RESULTS_AFTER_CURSOR';
414
414
* {module:datastore#runQuery}, {module:transaction#runQuery}, and
415
415
* {module:datastore/query#run} as `info.moreResults`.
416
416
*
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.
419
418
*
420
419
* @type {string }
421
420
*/
Original file line number Diff line number Diff line change @@ -291,11 +291,12 @@ Query.prototype.offset = function(n) {
291
291
* @param {?string } callback.info.endCursor - Use this in a follow-up query to
292
292
* begin from where these results ended.
293
293
* @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.
299
300
*
300
301
* @example
301
302
* query.run(function(err, entities, info) {});
Original file line number Diff line number Diff line change @@ -387,11 +387,12 @@ DatastoreRequest.prototype.insert = function(entities, callback) {
387
387
* @param {?string } callback.info.endCursor - Use this in a follow-up query to
388
388
* begin from where these results ended.
389
389
* @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.
395
396
*
396
397
* @example
397
398
* //-
You can’t perform that action at this time.
0 commit comments