From ef62979f620d13fa9825bb40206d0865be183b9b Mon Sep 17 00:00:00 2001 From: Scott Gardner Date: Thu, 12 May 2016 15:34:10 -0500 Subject: [PATCH] Change flatMapLatest example in Rx.playground to initially use flatMap --- .../Transforming_Operators.xcplaygroundpage/Contents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift b/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift index a9d7ce73..03351e24 100644 --- a/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift +++ b/Rx.playground/Pages/Transforming_Operators.xcplaygroundpage/Contents.swift @@ -41,7 +41,7 @@ example("flatMap and flatMapLatest") { let player = Variable(👦🏻) player.asObservable() - .flatMapLatest { $0.score.asObservable() } // Change flatMap to flatMapLatest and observe change in printed output + .flatMap { $0.score.asObservable() } // Change flatMap to flatMapLatest and observe change in printed output .subscribeNext { print($0) } .addDisposableTo(disposeBag)