Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions lib/datastore/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ function DatastoreRequest() {}
* @param {Key|Key[]} keys - Datastore key object(s).
* @param {function} callback - The callback function.
* @param {?error} callback.err - An error returned while making this request
* @param {module:datastore/entity|module:datastore/entity[]} callback.entity -
* Will return either a single Entity or a list of Entities.
* @param {object|object[]} callback.entity - The entity object(s) which match
* the provided keys.
*
* @example
* //-
Expand Down Expand Up @@ -559,7 +559,8 @@ DatastoreRequest.prototype.delete = function(keys, callback) {
* 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 {module:datastore/entity[]} callback.entities - A list of Entities
* @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 {object} callback.apiResponse - The full API response.
Expand Down