From 59df885c819eb4658d5dac4758994352cc1950ef Mon Sep 17 00:00:00 2001 From: Nate Dean Date: Wed, 6 Jul 2016 22:53:03 -0500 Subject: [PATCH] Update applications.md Fixed very small typo. --- doc/tutorial/applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/applications.md b/doc/tutorial/applications.md index 518f9a4f52..f5e78758d9 100644 --- a/doc/tutorial/applications.md +++ b/doc/tutorial/applications.md @@ -36,7 +36,7 @@ var increase = Rx.Observable.fromEvent(increaseButton, 'click') var state = increase.scan((state, changeFn) => changeFn(state), {count: 0}); ``` -We can now add a a couple of more observables which will also change the same state store. +We can now add a couple of more observables which will also change the same state store. ```js var increaseButton = document.querySelector('#increase');