Skip to content

Commit c5a42a2

Browse files
authored
2.x: Fix Completable mergeX JavaDoc missing dt before dd (#6103)
1 parent 4c89100 commit c5a42a2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/io/reactivex/Completable.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)