Minor docs fix

This commit is contained in:
Timothy Farrell 2018-08-16 23:30:22 -05:00
parent 9ad10c7188
commit 8db6d78574

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