From 018523bf1ea12d43270568eee40e8be45fcc3b3f Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Wed, 18 Nov 2015 10:53:59 +0100 Subject: [PATCH] Improves explanation in playgrounds. --- .../Combining_Observables.xcplaygroundpage/Contents.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Rx.playground/Pages/Combining_Observables.xcplaygroundpage/Contents.swift b/Rx.playground/Pages/Combining_Observables.xcplaygroundpage/Contents.swift index ac6b9639..2fff9798 100644 --- a/Rx.playground/Pages/Combining_Observables.xcplaygroundpage/Contents.swift +++ b/Rx.playground/Pages/Combining_Observables.xcplaygroundpage/Contents.swift @@ -95,7 +95,7 @@ example("combineLatest 3") { -//: Combinelatest allow combine sequences of several types. +//: Combinelatest version that allows combining sequences with different types. example("combineLatest 4") { let intOb = just(2) @@ -110,8 +110,8 @@ example("combineLatest 4") { } -//: There are a `combineLatest` extension method for Array of ObservableConvertibleType conformed types -//: The array must be formed by `Observables` of the same type +//: `combineLatest` extension method for Array of `ObservableType` conformable types +//: The array must be formed by `Observables` of the same type. example("combineLatest 5") { let intOb1 = just(2)