diff --git a/CONTRIBUTORS b/CONTRIBUTORS index b6bb54b4ba1..9e8cf519004 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -18,3 +18,4 @@ Patrick Costello Silvano Luciani Stephen Sawchuk Anand Suresh +Hector Rovira diff --git a/lib/datastore/request.js b/lib/datastore/request.js index 30f2b964586..2dca831c39a 100644 --- a/lib/datastore/request.js +++ b/lib/datastore/request.js @@ -552,17 +552,10 @@ DatastoreRequest.prototype.delete = function(keys, callback) { * stream instance is returned. * @param {?error} callback.err - An error returned while making this request * (may be null). - * @param {array} callback.entities - The list of entities returned by this - * query. Note that this is a single page of entities, not necessarily - * all of the entities. - * @param {?module:datastore/query} callback.nextQuery - If present, run another - * query with this object to check for more results. - * @param {object} callback.apiResponse - The full API response. - * @param {?error} callback.err - An error returned while making this request * @param {object[]} callback.entities - A list of entity objects which match * the provided keys. - * @param {?object} callback.nextQuery - If present, query with this object to - * check for more results. + * @param {?module:datastore/query} callback.nextQuery - If present, run another + * query with this object to check for more results. * @param {object} callback.apiResponse - The full API response. * * @example