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