Improves explanation in playgrounds.

This commit is contained in:
Krunoslav Zaher 2015-11-18 10:53:59 +01:00
parent a03ee86d38
commit 018523bf1e
1 changed files with 3 additions and 3 deletions

View File

@ -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)