Skip to content

Commit 073dd09

Browse files
hrovirastephenplusplus
authored andcommitted
fixing duplicated parameter description
there were duplicated parameter definitions for 'err', 'callback.entities', 'callback.nextQuery', 'callback.apiResponse'. fixed by removing redundant.
1 parent c85b593 commit 073dd09

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

CONTRIBUTORS

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ Patrick Costello <[email protected]>
1818
Silvano Luciani <[email protected]>
1919
Stephen Sawchuk <[email protected]>
2020
Anand Suresh <[email protected]>
21+
Hector Rovira <[email protected]>

lib/datastore/request.js

+2-9
Original file line numberDiff line numberDiff line change
@@ -552,17 +552,10 @@ DatastoreRequest.prototype.delete = function(keys, callback) {
552552
* stream instance is returned.
553553
* @param {?error} callback.err - An error returned while making this request
554554
* (may be null).
555-
* @param {array} callback.entities - The list of entities returned by this
556-
* query. Note that this is a single page of entities, not necessarily
557-
* all of the entities.
558-
* @param {?module:datastore/query} callback.nextQuery - If present, run another
559-
* query with this object to check for more results.
560-
* @param {object} callback.apiResponse - The full API response.
561-
* @param {?error} callback.err - An error returned while making this request
562555
* @param {object[]} callback.entities - A list of entity objects which match
563556
* the provided keys.
564-
* @param {?object} callback.nextQuery - If present, query with this object to
565-
* check for more results.
557+
* @param {?module:datastore/query} callback.nextQuery - If present, run another
558+
* query with this object to check for more results.
566559
* @param {object} callback.apiResponse - The full API response.
567560
*
568561
* @example

0 commit comments

Comments
 (0)