From 8ce99d1219741d7e8611d3c4b5c0f840a4564617 Mon Sep 17 00:00:00 2001 From: baek-jinoo Date: Mon, 20 Jun 2016 17:45:37 -0700 Subject: [PATCH] Minor typo fix --- Documentation/GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/GettingStarted.md b/Documentation/GettingStarted.md index b1938439..79f8a040 100644 --- a/Documentation/GettingStarted.md +++ b/Documentation/GettingStarted.md @@ -875,7 +875,7 @@ The reason why 2 navigations are suggested is because first navigation forces lo Variable wraps a [`Subject`](http://reactivex.io/documentation/subject.html). More specifically it is a `BehaviorSubject`. Unlike `BehaviorSubject`, it only exposes `value` interface, so variable can never terminate or fail. -It will also broadcast it's current value immediately on subscription. +It will also broadcast its current value immediately on subscription. After variable is deallocated, it will complete the observable sequence returned from `.asObservable()`.