We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b418590 + 628bbcc commit 1ceb1bbCopy full SHA for 1ceb1bb
src/main/scala/rx/lang/scala/Observable.scala
@@ -2279,7 +2279,7 @@ trait Observable[+T]
2279
* @param that
2280
* an Observable to be merged
2281
* @return an Observable that emits items from `this` and `that` until
2282
- * `this` or `that` emits `onError` or `onComplete`.
+ * `this` or `that` emits `onError` or both Observables emit `onCompleted`.
2283
*/
2284
def merge[U >: T](that: Observable[U]): Observable[U] = {
2285
val thisJava: rx.Observable[_ <: U] = this.asJavaObservable
0 commit comments