From 3771e63a4caf3641fbe785b1659c8380f24c1545 Mon Sep 17 00:00:00 2001 From: Scott Gardner Date: Thu, 12 May 2016 16:04:32 -0500 Subject: [PATCH] Minor update to Rx.playground based on feedback from kzaher --- .../Pages/Introduction.xcplaygroundpage/Contents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rx.playground/Pages/Introduction.xcplaygroundpage/Contents.swift b/Rx.playground/Pages/Introduction.xcplaygroundpage/Contents.swift index 1d4ce1c3..36f2faa0 100644 --- a/Rx.playground/Pages/Introduction.xcplaygroundpage/Contents.swift +++ b/Rx.playground/Pages/Introduction.xcplaygroundpage/Contents.swift @@ -49,7 +49,7 @@ All of these various systems makes our code needlessly complex. Wouldn't it be b /*: ### Observables and observers (aka subscribers) - `Observable`s will not execute their closure unless there is a subscriber. In the following example, the closure of the `Observable` will never be executed, because there are no subscribers: + `Observable`s will not execute their subscription closure unless there is a subscriber. In the following example, the closure of the `Observable` will never be executed, because there are no subscribers: */ example("Observable with no subscribers") { _ = Observable.create { observerOfString -> Disposable in