@@ -1401,7 +1401,7 @@ public static <T> Flowable<T> concatEager(Publisher<? extends Publisher<? extend
1401
1401
* in order, each one after the previous one completes.
1402
1402
* <dl>
1403
1403
* <dt><b>Backpressure:</b></dt>
1404
- * <dd>Backpressure is honored towards the downstream and both the outer and inner Publishers are
1404
+ * <dd>Backpressure is honored towards the downstream and the inner Publishers are
1405
1405
* expected to support backpressure. Violating this assumption, the operator will
1406
1406
* signal {@code MissingBackpressureException}.</dd>
1407
1407
* <dt><b>Scheduler:</b></dt>
@@ -1680,7 +1680,7 @@ public static <T> Flowable<T> fromCallable(Callable<? extends T> supplier) {
1680
1680
* return value of the {@link Future#get} method of that object, by passing the object into the {@code from}
1681
1681
* method.
1682
1682
* <p>
1683
- * <em>Important note:</em> This Publisher is blocking; you cannot unsubscribe from it.
1683
+ * <em>Important note:</em> This Publisher is blocking on the thread it gets subscribed on ; you cannot unsubscribe from it.
1684
1684
* <p>
1685
1685
* Unlike 1.x, cancelling the Flowable won't cancel the future. If necessary, one can use composition to achieve the
1686
1686
* cancellation effect: {@code futurePublisher.doOnCancel(() -> future.cancel(true));}.
@@ -1712,13 +1712,13 @@ public static <T> Flowable<T> fromFuture(Future<? extends T> future) {
1712
1712
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/from.Future.png" alt="">
1713
1713
* <p>
1714
1714
* You can convert any object that supports the {@link Future} interface into a Publisher that emits the
1715
- * return value of the {@link Future#get} method of that object, by passing the object into the {@code from }
1715
+ * return value of the {@link Future#get} method of that object, by passing the object into the {@code fromFuture }
1716
1716
* method.
1717
1717
* <p>
1718
1718
* Unlike 1.x, cancelling the Flowable won't cancel the future. If necessary, one can use composition to achieve the
1719
1719
* cancellation effect: {@code futurePublisher.doOnCancel(() -> future.cancel(true));}.
1720
1720
* <p>
1721
- * <em>Important note:</em> This Publisher is blocking; you cannot unsubscribe from it.
1721
+ * <em>Important note:</em> This Publisher is blocking on the thread it gets subscribed on ; you cannot unsubscribe from it.
1722
1722
* <dl>
1723
1723
* <dt><b>Backpressure:</b></dt>
1724
1724
* <dd>The operator honors backpressure from downstream.</dd>
@@ -3156,7 +3156,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends Publisher<? ex
3156
3156
}
3157
3157
3158
3158
/**
3159
- * Flattens an Iterable of Publishers into one Publisher , in a way that allows an Subscriber to receive all
3159
+ * Flattens an array of Publishers into one Flowable , in a way that allows an Subscriber to receive all
3160
3160
* successfully emitted items from each of the source Publishers without being interrupted by an error
3161
3161
* notification from one of them.
3162
3162
* <p>
@@ -3426,7 +3426,7 @@ public static <T> Flowable<Boolean> sequenceEqual(Publisher<? extends T> source1
3426
3426
* a function used to compare items emitted by each Publisher
3427
3427
* @param <T>
3428
3428
* the type of items emitted by each Publisher
3429
- * @return a Flowable that emits a Boolean value that indicates whether the two Publisher two sequences
3429
+ * @return a Flowable that emits a Boolean value that indicates whether the two Publisher sequences
3430
3430
* are the same according to the specified function
3431
3431
* @see <a href="http://reactivex.io/documentation/operators/sequenceequal.html">ReactiveX operators documentation: SequenceEqual</a>
3432
3432
*/
@@ -3461,7 +3461,7 @@ public static <T> Flowable<Boolean> sequenceEqual(Publisher<? extends T> source1
3461
3461
* the number of items to prefetch from the first and second source Publisher
3462
3462
* @param <T>
3463
3463
* the type of items emitted by each Publisher
3464
- * @return a Flowable that emits a Boolean value that indicates whether the two Publisher two sequences
3464
+ * @return a Flowable that emits a Boolean value that indicates whether the two Publisher sequences
3465
3465
* are the same according to the specified function
3466
3466
* @see <a href="http://reactivex.io/documentation/operators/sequenceequal.html">ReactiveX operators documentation: SequenceEqual</a>
3467
3467
*/
0 commit comments