From 44ee436eea54fbbb1cecc11816150766d88462cb Mon Sep 17 00:00:00 2001 From: Alexey Shamrin Date: Sun, 30 Nov 2014 20:20:34 +0300 Subject: [PATCH] fix typo in addons.update() $splice command help --- docs/10.6-update.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/10.6-update.md b/docs/10.6-update.md index 2169ba5c1..a29f12112 100644 --- a/docs/10.6-update.md +++ b/docs/10.6-update.md @@ -58,7 +58,7 @@ The `$`-prefixed keys are called *commands*. The data structure they are "mutati * `{$push: array}` `push()` all the items in `array` on the target. * `{$unshift: array}` `unshift()` all the items in `array` on the target. - * `{$splice: array of arrays}` for each item in `array()` call `splice()` on the target with the parameters provided by the item. + * `{$splice: array of arrays}` for each item in `arrays` call `splice()` on the target with the parameters provided by the item. * `{$set: any}` replace the target entirely. * `{$merge: object}` merge the keys of `object` with the target. * `{$apply: function}` passes in the current value to the function and updates it with the new returned value.