Fixes typo.

This commit is contained in:
Krunoslav Zaher 2016-01-25 20:51:24 +01:00
parent f9f30229a0
commit af6772d7eb
1 changed files with 2 additions and 2 deletions

View File

@ -26,11 +26,11 @@ This project tries to be consistent with [ReactiveX.io](http://reactivex.io/). T
# Observables aka Sequences
## Basics
The [Equivalence](MathBehindRx.md) of observer patterns (`Observable<Element>`) and sequences (`Generator`s)
The [Equivalence](MathBehindRx.md) of observer patterns (`Observable<Element>`) and sequences (`Generator`s)
is one of the most important things to understand about Rx.
The observer pattern is needed because we want to model asynchronous behavior.
That equivalence enablesthe implementation of high level sequence operations as operators on `Observable`s.
That equivalence enables the implementation of high level sequence operations as operators on `Observable`s.
Sequences are a simple, familiar concept that is **easy to visualize**.