Skip to content

Commit

Permalink
fixing duplicated parameter description
Browse files Browse the repository at this point in the history
there were duplicated parameter definitions for 'err', 'callback.entities', 'callback.nextQuery', 'callback.apiResponse'.

fixed by removing redundant.
  • Loading branch information
hrovira authored and stephenplusplus committed Jan 20, 2016
1 parent c85b593 commit 073dd09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ Patrick Costello <pcostell@google.com>
Silvano Luciani <silvano@google.com>
Stephen Sawchuk <sawchuk@gmail.com>
Anand Suresh <anandsuresh@gmail.com>
Hector Rovira <hrovira@gmail.com>
11 changes: 2 additions & 9 deletions lib/datastore/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 073dd09

Please sign in to comment.