Skip to content

Commit

Permalink
Merge pull request #112 from chieffancypants/doc-updates
Browse files Browse the repository at this point in the history
minor doc updates
  • Loading branch information
jmdobry committed Aug 7, 2014
2 parents c39ff05 + 0b2fce3 commit 8e1b21d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/datastore/async_methods/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ var errorPrefix = 'DS.create(resourceName, attrs[, options]): ';
* ```
*
* @param {string} resourceName The resource type, e.g. 'user', 'comment', etc.
* @param {object} attrs The attributes with which to update the item of the type specified by `resourceName` that has
* the primary key specified by `id`.
* @param {object} attrs The attributes with which to create the item of the type specified by `resourceName`.
* @param {object=} options Configuration options. Properties:
*
* - `{boolean=}` - `cacheResponse` - Inject the data returned by the server into the data store. Default: `true`.
Expand Down
2 changes: 1 addition & 1 deletion src/datastore/async_methods/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var errorPrefix = 'DS.save(resourceName, id[, options]): ';
* ```
*
* @param {string} resourceName The resource type, e.g. 'user', 'comment', etc.
* @param {string|number} id The primary key of the item to retrieve.
* @param {string|number} id The primary key of the item to save.
* @param {object=} options Optional configuration. Properties::
*
* - `{boolean=}` - `cacheResponse` - Inject the data returned by the server into the data store. Default: `true`.
Expand Down

0 comments on commit 8e1b21d

Please sign in to comment.