@@ -577,6 +577,7 @@ public static <T> Completable fromSingle(final SingleSource<T> single) {
577577 * <dl>
578578 * <dt><b>Scheduler:</b></dt>
579579 * <dd>{@code mergeArray} does not operate by default on a particular {@link Scheduler}.</dd>
580+ * <dt><b>Error handling:</b></dt>
580581 * <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
581582 * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
582583 * 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) {
653654 * and expects the other {@code Publisher} to honor it as well.</dd>
654655 * <dt><b>Scheduler:</b></dt>
655656 * <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
657+ * <dt><b>Error handling:</b></dt>
656658 * <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
657659 * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
658660 * 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)
689691 * and expects the other {@code Publisher} to honor it as well.</dd>
690692 * <dt><b>Scheduler:</b></dt>
691693 * <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
694+ * <dt><b>Error handling:</b></dt>
692695 * <dd>If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting
693696 * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled.
694697 * If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the
0 commit comments