Minor docs fix

This commit is contained in:
Timothy Farrell 2018-08-16 23:30:22 -05:00
parent 8a2bf361eb
commit 5f8c75408d

View File

@ -198,7 +198,7 @@ updated status.
```js
const monkeys = contained([], arr => arr.join('$'));
const firstMonkey = computed(m => (m.length ? m[0] : null), [monkeys]);
firstMonkey.subscribe(console.log.bind.console);
firstMonkey.subscribe(console.log.bind(console));
```
### Add a member to the container