Fix minor typo in update $push directive

This commit is contained in:
Daniel Gasienica
2014-03-28 16:33:03 -07:00
parent e5c8831f90
commit 5fc2ecbe92
+1 -1
View File
@@ -45,7 +45,7 @@ While this is fairly performant (since it only shallow copies `log n` objects an
```javascript
var newData = React.addons.update(myData, {
x: {y: {z: {$set: 7}}},
a: {b: {$push: [7]}}
a: {b: {$push: [9]}}
});
```