From 8bb2705e020309a6b96e7940995a0b33cf84ade5 Mon Sep 17 00:00:00 2001 From: Allen Hai Date: Mon, 6 Aug 2018 14:50:16 -0500 Subject: [PATCH] content: fix typo in stores.md (#68) --- content/docs/stores/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/stores/index.md b/content/docs/stores/index.md index 120ae63..78a5b47 100644 --- a/content/docs/stores/index.md +++ b/content/docs/stores/index.md @@ -81,7 +81,7 @@ re-render. Renders only happen when the `'render'` event is emitted. The biggest benefit of explicit rendering we've found is that it allows storing values without triggering renders. This allows every part of the application to store their internal bookkeeping values inside the state. In turn this makes -debugging applications a lot easier, since there are is no private state. +debugging applications a lot easier, since there is no private state. ```js var choo = require('choo')