@@ -577,6 +577,7 @@ public static <T> Completable fromSingle(final SingleSource<T> single) {
577
577
* <dl>
578
578
* <dt><b>Scheduler:</b></dt>
579
579
* <dd>{@code mergeArray} does not operate by default on a particular {@link Scheduler}.</dd>
580
+ * <dt><b>Error handling:</b></dt>
580
581
* <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
581
582
* {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
582
583
* If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the
@@ -653,6 +654,7 @@ public static Completable merge(Iterable<? extends CompletableSource> sources) {
653
654
* and expects the other {@code Publisher} to honor it as well.</dd>
654
655
* <dt><b>Scheduler:</b></dt>
655
656
* <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
657
+ * <dt><b>Error handling:</b></dt>
656
658
* <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
657
659
* {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
658
660
* If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the
@@ -689,6 +691,7 @@ public static Completable merge(Publisher<? extends CompletableSource> sources)
689
691
* and expects the other {@code Publisher} to honor it as well.</dd>
690
692
* <dt><b>Scheduler:</b></dt>
691
693
* <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
694
+ * <dt><b>Error handling:</b></dt>
692
695
* <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
693
696
* {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
694
697
* If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the
0 commit comments