Skip to content

Commit 1ceb1bb

Browse files
committed
Merge pull request #159 from lukestephenson/patch-1
Correct documentation for Observable.merge
2 parents b418590 + 628bbcc commit 1ceb1bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/rx/lang/scala/Observable.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2279,7 +2279,7 @@ trait Observable[+T]
22792279
* @param that
22802280
* an Observable to be merged
22812281
* @return an Observable that emits items from `this` and `that` until
2282-
* `this` or `that` emits `onError` or `onComplete`.
2282+
* `this` or `that` emits `onError` or both Observables emit `onCompleted`.
22832283
*/
22842284
def merge[U >: T](that: Observable[U]): Observable[U] = {
22852285
val thisJava: rx.Observable[_ <: U] = this.asJavaObservable

0 commit comments

Comments
 (0)