From 7f1fcff40b096c90799c58b43750ad02c9bb8ee5 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Mon, 16 May 2016 01:47:07 +0700 Subject: [PATCH] docs: s/syncronous/synchronous/ --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2471ebe..db7d12f 100644 --- a/README.md +++ b/README.md @@ -58,8 +58,8 @@ document.body.appendChild(tree) ## Concepts - __state:__ a single object that contains all application state, should only ever be modified by `reducers` -- __reducers:__ syncronous functions that modify `state` -- __effects:__ asyncronous functions that perform IO. Effects can call +- __reducers:__ synchronous functions that modify `state` +- __effects:__ asynchronous functions that perform IO. Effects can call `send()` when done to handle results - __subscriptions:__ streams of data that can either be written to or read from ```txt