From 7bd58f8efb74c9a38ca072bf70838dbe1097646a Mon Sep 17 00:00:00 2001 From: akarnokd Date: Fri, 21 Apr 2017 22:00:26 +0200 Subject: [PATCH] 2.x: Fix Javadoc of Flowable.toObservable --- src/main/java/io/reactivex/Flowable.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/io/reactivex/Flowable.java b/src/main/java/io/reactivex/Flowable.java index 037c111832..17b63d7970 100644 --- a/src/main/java/io/reactivex/Flowable.java +++ b/src/main/java/io/reactivex/Flowable.java @@ -14873,15 +14873,15 @@ public final Single>> toMultimap( } /** - * Converts the current Flowable into a non-backpressured Publisher. + * Converts the current Flowable into a non-backpressured {@link Observable}. *
*
Backpressure:
- *
Publishers don't support backpressure thus the current Flowable is consumed in an unbounded + *
Observables don't support backpressure thus the current Flowable is consumed in an unbounded * manner (by requesting Long.MAX_VALUE).
*
Scheduler:
*
{@code toObservable} does not operate by default on a particular {@link Scheduler}.
*
- * @return the new Publisher instance + * @return the new Observable instance * @since 2.0 */ @CheckReturnValue