Merge pull request #819 from BuddyHOPP/fix/jsdoc_update

Minor: update jsdoc for PersistedModel.updateAll
This commit is contained in:
Raymond Feng 2014-11-17 14:04:42 -08:00
commit 7a877e91fe
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ PersistedModel.deleteAll = PersistedModel.destroyAll;
* Example:
*
*```js
* Employee.update({managerId: 'x001'}, {managerId: 'x002'}, function(err) {
* Employee.updateAll({managerId: 'x001'}, {managerId: 'x002'}, function(err, count) {
* ...
* });
* ```