From 8db6d78574a2ea739aac2ba804b313362a87cd0a Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Thu, 16 Aug 2018 23:30:22 -0500 Subject: [PATCH] Minor docs fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9234282..a07b699 100644 --- a/README.md +++ b/README.md @@ -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