From 6ed11f3caf13f7eb1c9c6ed2b00bb31b89bda6ce Mon Sep 17 00:00:00 2001 From: akarnokd Date: Fri, 20 Jul 2018 14:04:39 +0200 Subject: [PATCH] 2.x: Fix Completable mergeX JavaDoc missing dt before dd --- src/main/java/io/reactivex/Completable.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/io/reactivex/Completable.java b/src/main/java/io/reactivex/Completable.java index d00cd9b451..08485ee3f5 100644 --- a/src/main/java/io/reactivex/Completable.java +++ b/src/main/java/io/reactivex/Completable.java @@ -577,6 +577,7 @@ public static Completable fromSingle(final SingleSource single) { *
*
Scheduler:
*
{@code mergeArray} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * 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 sources) { * and expects the other {@code Publisher} to honor it as well.
*
Scheduler:
*
{@code merge} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * 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 sources) * and expects the other {@code Publisher} to honor it as well.
*
Scheduler:
*
{@code merge} does not operate by default on a particular {@link Scheduler}.
+ *
Error handling:
*
If any of the source {@code CompletableSource}s signal a {@code Throwable} via {@code onError}, the resulting * {@code Completable} terminates with that {@code Throwable} and all other source {@code CompletableSource}s are cancelled. * If more than one {@code CompletableSource} signals an error, the resulting {@code Completable} may terminate with the