From af6772d7eb4497eb6378fa0fef78e552013700ad Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 25 Jan 2016 20:51:24 +0100 Subject: [PATCH] Fixes typo. --- Documentation/GettingStarted.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/GettingStarted.md b/Documentation/GettingStarted.md index 37b33315..ab2215d6 100644 --- a/Documentation/GettingStarted.md +++ b/Documentation/GettingStarted.md @@ -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`) and sequences (`Generator`s) +The [Equivalence](MathBehindRx.md) of observer patterns (`Observable`) 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**.