From 4046c1163c4e153b2489a0437c3275e5b520bccb Mon Sep 17 00:00:00 2001 From: Scott Gardner Date: Fri, 13 May 2016 14:49:00 -0500 Subject: [PATCH] Update skipUntil example --- .../Contents.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rx.playground/Pages/Filtering_and_Conditional_Operators.xcplaygroundpage/Contents.swift b/Rx.playground/Pages/Filtering_and_Conditional_Operators.xcplaygroundpage/Contents.swift index 7b4abac0..064b5028 100644 --- a/Rx.playground/Pages/Filtering_and_Conditional_Operators.xcplaygroundpage/Contents.swift +++ b/Rx.playground/Pages/Filtering_and_Conditional_Operators.xcplaygroundpage/Contents.swift @@ -204,7 +204,7 @@ example("skipUntil") { sourceSequence .skipUntil(referenceSequence) - .subscribe { print($0) } + .subscribeNext { print($0) } .addDisposableTo(disposeBag) sourceSequence.onNext("🐱")