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("🐱")