Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/io/reactivex/Flowable.java
Original file line number Diff line number Diff line change
Expand Up @@ -14873,15 +14873,15 @@ public final <K, V> Single<Map<K, Collection<V>>> toMultimap(
}

/**
* Converts the current Flowable into a non-backpressured Publisher.
* Converts the current Flowable into a non-backpressured {@link Observable}.
* <dl>
* <dt><b>Backpressure:</b></dt>
* <dd>Publishers don't support backpressure thus the current Flowable is consumed in an unbounded
* <dd>Observables don't support backpressure thus the current Flowable is consumed in an unbounded
* manner (by requesting Long.MAX_VALUE).</dd>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code toObservable} does not operate by default on a particular {@link Scheduler}.</dd>
* </dl>
* @return the new Publisher instance
* @return the new Observable instance
* @since 2.0
*/
@CheckReturnValue
Expand Down