Skip to content

Commit

Permalink
docs(applications): fix typo in document (#1809)
Browse files Browse the repository at this point in the history
Fixed very small typo.
  • Loading branch information
natedean authored and kwonoj committed Jul 8, 2016
1 parent 22fd8ae commit 8befc1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/tutorial/applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 8befc1e

Please sign in to comment.