From d50a7e6768c46a5d735456064b5dc95ce2756a0e Mon Sep 17 00:00:00 2001 From: Tylor Steinberger Date: Wed, 9 Nov 2016 19:06:55 -0500 Subject: [PATCH] docs(README): make nathan happier :D --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d0cd20..8a382ce 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Let us take a look at some of the functions provided by this library. #### `async(): Subject` -This function here, creates a Subject, which will produce its values asynchonously. +This function here creates a Subject, which will produce its values asynchonously. The asynchrony is important to note here. Most.js itself ensures that **no** events can occur while it is being instantiated via `.observe()` and related operators that "attach" listeners. @@ -77,7 +77,7 @@ subject #### `sync(): Subject` -This function here, will create Subject that will emit its values synchronously. +This function here will create Subject that will emit its values synchronously. This is provided to add backwards compatiblity with theoretical edge cases applications may have been built on in previous versions.