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
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -11737,7 +11737,7 @@ public final <K, V> Single<Map<K, Collection<V>>> toMultimap(
}

/**
* Converts the current Observable into an Observable by applying the specified backpressure strategy.
* Converts the current Observable into a Flowable by applying the specified backpressure strategy.
* <dl>
* <dt><b>Backpressure:</b></dt>
* <dd>The operator applies the chosen backpressure strategy of {@link BackpressureStrategy} enum.</dd>
Expand All @@ -11746,7 +11746,7 @@ public final <K, V> Single<Map<K, Collection<V>>> toMultimap(
* </dl>
*
* @param strategy the backpressure strategy to apply
* @return the new Observable instance
* @return the new Flowable instance
*/
@BackpressureSupport(BackpressureKind.SPECIAL)
@SchedulerSupport(SchedulerSupport.NONE)
Expand Down