Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/scala/rx/lang/scala/Observable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2279,7 +2279,7 @@ trait Observable[+T]
* @param that
* an Observable to be merged
* @return an Observable that emits items from `this` and `that` until
* `this` or `that` emits `onError` or `onComplete`.
* `this` or `that` emits `onError` or both Observables emit `onCompleted`.
*/
def merge[U >: T](that: Observable[U]): Observable[U] = {
val thisJava: rx.Observable[_ <: U] = this.asJavaObservable
Expand Down