Minor: update jsdoc for PersistedModel.updateAll

This commit is contained in:
Alex Voitau 2014-11-14 20:06:08 -08:00
parent b2d9f662e5
commit 6f1b5f61ed
1 changed files with 1 additions and 1 deletions

View File

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