From 341a6742559bab9f0a564e5ae90a52640332a43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marius=20Lundg=C3=A5rd?= Date: Mon, 27 Nov 2017 08:46:31 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c63e561..0317b72 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ import {createStore} from 'opstore' const store = createStore({count: 0}) const countRef = store.ref('count') -countRef.subcribe(count => console.log(count)) +countRef.subscribe(count => console.log(count)) console.log(countRef.get()) // 0