Skip to content

Commit 30a206d

Browse files
authored
2.x: Fix Javadoc of Flowable.toObservable (#5309)
1 parent 2d20a17 commit 30a206d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/io/reactivex/Flowable.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14873,15 +14873,15 @@ public final <K, V> Single<Map<K, Collection<V>>> toMultimap(
1487314873
}
1487414874

1487514875
/**
14876-
* Converts the current Flowable into a non-backpressured Publisher.
14876+
* Converts the current Flowable into a non-backpressured {@link Observable}.
1487714877
* <dl>
1487814878
* <dt><b>Backpressure:</b></dt>
14879-
* <dd>Publishers don't support backpressure thus the current Flowable is consumed in an unbounded
14879+
* <dd>Observables don't support backpressure thus the current Flowable is consumed in an unbounded
1488014880
* manner (by requesting Long.MAX_VALUE).</dd>
1488114881
* <dt><b>Scheduler:</b></dt>
1488214882
* <dd>{@code toObservable} does not operate by default on a particular {@link Scheduler}.</dd>
1488314883
* </dl>
14884-
* @return the new Publisher instance
14884+
* @return the new Observable instance
1488514885
* @since 2.0
1488614886
*/
1488714887
@CheckReturnValue

0 commit comments

Comments
 (0)