@@ -408,7 +408,7 @@ public static <T, R> Flowable<R> combineLatestDelayError(Function<? super Object
408
408
409
409
/**
410
410
* Combines a collection of source Publishers by emitting an item that aggregates the latest values of each of
411
- * the source ObservableSources each time an item is received from any of the source Publisher, where this
411
+ * the source Publishers each time an item is received from any of the source Publisher, where this
412
412
* aggregation is defined by a specified function and delays any error from the sources until
413
413
* all source Publishers terminate.
414
414
* <p>
@@ -1274,7 +1274,7 @@ public static <T> Flowable<T> concatArrayDelayError(Publisher<? extends T>... so
1274
1274
* in order, each one after the previous one completes.
1275
1275
* <dl>
1276
1276
* <dt><b>Backpressure:</b></dt>
1277
- * <dd><dd> The operator honors backpressure from downstream. The {@code Publisher}
1277
+ * <dd>The operator honors backpressure from downstream. The {@code Publisher}
1278
1278
* sources are expected to honor backpressure as well.
1279
1279
* If any of the source {@code Publisher}s violate this, the operator will signal a
1280
1280
* {@code MissingBackpressureException}.</dd>
@@ -1300,7 +1300,7 @@ public static <T> Flowable<T> concatArrayEager(Publisher<? extends T>... sources
1300
1300
* in order, each one after the previous one completes.
1301
1301
* <dl>
1302
1302
* <dt><b>Backpressure:</b></dt>
1303
- * <dd><dd> The operator honors backpressure from downstream. The {@code Publisher}
1303
+ * <dd>The operator honors backpressure from downstream. The {@code Publisher}
1304
1304
* sources are expected to honor backpressure as well.
1305
1305
* If any of the source {@code Publisher}s violate this, the operator will signal a
1306
1306
* {@code MissingBackpressureException}.</dd>
@@ -1564,7 +1564,7 @@ public static <T> Flowable<T> create(FlowableOnSubscribe<T> source, FlowableEmit
1564
1564
* <img width="640" height="340" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/defer.png" alt="">
1565
1565
* <p>
1566
1566
* The defer Subscriber allows you to defer or delay emitting items from a Publisher until such time as an
1567
- * Subscriber subscribes to the Publisher. This allows an {@link Subscriber} to easily obtain updates or a
1567
+ * Subscriber subscribes to the Publisher. This allows a {@link Subscriber} to easily obtain updates or a
1568
1568
* refreshed version of the sequence.
1569
1569
* <dl>
1570
1570
* <dt><b>Backpressure:</b></dt>
@@ -1616,7 +1616,7 @@ public static <T> Flowable<T> empty() {
1616
1616
}
1617
1617
1618
1618
/**
1619
- * Returns a Flowable that invokes an {@link Subscriber}'s {@link Subscriber#onError onError} method when the
1619
+ * Returns a Flowable that invokes a {@link Subscriber}'s {@link Subscriber#onError onError} method when the
1620
1620
* Subscriber subscribes to it.
1621
1621
* <p>
1622
1622
* <img width="640" height="190" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/error.png" alt="">
@@ -1643,7 +1643,7 @@ public static <T> Flowable<T> error(Callable<? extends Throwable> supplier) {
1643
1643
}
1644
1644
1645
1645
/**
1646
- * Returns a Flowable that invokes an {@link Subscriber}'s {@link Subscriber#onError onError} method when the
1646
+ * Returns a Flowable that invokes a {@link Subscriber}'s {@link Subscriber#onError onError} method when the
1647
1647
* Subscriber subscribes to it.
1648
1648
* <p>
1649
1649
* <img width="640" height="190" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/error.png" alt="">
@@ -1702,12 +1702,12 @@ public static <T> Flowable<T> fromArray(T... items) {
1702
1702
}
1703
1703
1704
1704
/**
1705
- * Returns a Flowable that, when an Subscriber subscribes to it, invokes a function you specify and then
1705
+ * Returns a Flowable that, when a Subscriber subscribes to it, invokes a function you specify and then
1706
1706
* emits the value returned from that function.
1707
1707
* <p>
1708
1708
* <img width="640" height="195" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/fromCallable.png" alt="">
1709
1709
* <p>
1710
- * This allows you to defer the execution of the function you specify until an Subscriber subscribes to the
1710
+ * This allows you to defer the execution of the function you specify until a Subscriber subscribes to the
1711
1711
* Publisher. That is to say, it makes the function "lazy."
1712
1712
* <dl>
1713
1713
* <dt><b>Backpressure:</b></dt>
@@ -1718,7 +1718,7 @@ public static <T> Flowable<T> fromArray(T... items) {
1718
1718
*
1719
1719
* @param supplier
1720
1720
* a function, the execution of which should be deferred; {@code fromCallable} will invoke this
1721
- * function only when an Subscriber subscribes to the Publisher that {@code fromCallable} returns
1721
+ * function only when a Subscriber subscribes to the Publisher that {@code fromCallable} returns
1722
1722
* @param <T>
1723
1723
* the type of the item emitted by the Publisher
1724
1724
* @return a Flowable whose {@link Subscriber}s' subscriptions trigger an invocation of the given function
@@ -2151,7 +2151,7 @@ public static Flowable<Long> interval(long initialDelay, long period, TimeUnit u
2151
2151
* <dl>
2152
2152
* <dt><b>Backpressure:</b></dt>
2153
2153
* <dd>The operator signals a {@code MissingBackpressureException} if the downstream
2154
- * is not ready to receive the next value.
2154
+ * is not ready to receive the next value.</dd>
2155
2155
* <dt><b>Scheduler:</b></dt>
2156
2156
* <dd>{@code interval} operates by default on the {@code computation} {@link Scheduler}.</dd>
2157
2157
* </dl>
@@ -3007,7 +3007,7 @@ public static <T> Flowable<T> merge(
3007
3007
}
3008
3008
3009
3009
/**
3010
- * Flattens an Iterable of Publishers into one Publisher, in a way that allows an Subscriber to receive all
3010
+ * Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
3011
3011
* successfully emitted items from each of the source Publishers without being interrupted by an error
3012
3012
* notification from one of them.
3013
3013
* <p>
@@ -3043,7 +3043,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
3043
3043
3044
3044
3045
3045
/**
3046
- * Flattens an Iterable of Publishers into one Publisher, in a way that allows an Subscriber to receive all
3046
+ * Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
3047
3047
* successfully emitted items from each of the source Publishers without being interrupted by an error
3048
3048
* notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
3049
3049
* <p>
@@ -3082,7 +3082,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
3082
3082
}
3083
3083
3084
3084
/**
3085
- * Flattens an array of Publishers into one Publisher, in a way that allows an Subscriber to receive all
3085
+ * Flattens an array of Publishers into one Publisher, in a way that allows a Subscriber to receive all
3086
3086
* successfully emitted items from each of the source Publishers without being interrupted by an error
3087
3087
* notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
3088
3088
* <p>
@@ -3121,7 +3121,7 @@ public static <T> Flowable<T> mergeArrayDelayError(int maxConcurrency, int buffe
3121
3121
}
3122
3122
3123
3123
/**
3124
- * Flattens an Iterable of Publishers into one Publisher, in a way that allows an Subscriber to receive all
3124
+ * Flattens an Iterable of Publishers into one Publisher, in a way that allows a Subscriber to receive all
3125
3125
* successfully emitted items from each of the source Publishers without being interrupted by an error
3126
3126
* notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
3127
3127
* <p>
@@ -3158,7 +3158,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
3158
3158
}
3159
3159
3160
3160
/**
3161
- * Flattens a Publisher that emits Publishers into one Publisher, in a way that allows an Subscriber to
3161
+ * Flattens a Publisher that emits Publishers into one Publisher, in a way that allows a Subscriber to
3162
3162
* receive all successfully emitted items from all of the source Publishers without being interrupted by
3163
3163
* an error notification from one of them.
3164
3164
* <p>
@@ -3193,7 +3193,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends Publisher<? ex
3193
3193
}
3194
3194
3195
3195
/**
3196
- * Flattens a Publisher that emits Publishers into one Publisher, in a way that allows an Subscriber to
3196
+ * Flattens a Publisher that emits Publishers into one Publisher, in a way that allows a Subscriber to
3197
3197
* receive all successfully emitted items from all of the source Publishers without being interrupted by
3198
3198
* an error notification from one of them, while limiting the
3199
3199
* number of concurrent subscriptions to these Publishers.
@@ -3232,7 +3232,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends Publisher<? ex
3232
3232
}
3233
3233
3234
3234
/**
3235
- * Flattens an array of Publishers into one Flowable, in a way that allows an Subscriber to receive all
3235
+ * Flattens an array of Publishers into one Flowable, in a way that allows a Subscriber to receive all
3236
3236
* successfully emitted items from each of the source Publishers without being interrupted by an error
3237
3237
* notification from one of them.
3238
3238
* <p>
@@ -3267,7 +3267,7 @@ public static <T> Flowable<T> mergeArrayDelayError(Publisher<? extends T>... sou
3267
3267
}
3268
3268
3269
3269
/**
3270
- * Flattens two Publishers into one Publisher, in a way that allows an Subscriber to receive all
3270
+ * Flattens two Publishers into one Publisher, in a way that allows a Subscriber to receive all
3271
3271
* successfully emitted items from each of the source Publishers without being interrupted by an error
3272
3272
* notification from one of them.
3273
3273
* <p>
@@ -3305,7 +3305,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends T> source1, Pu
3305
3305
}
3306
3306
3307
3307
/**
3308
- * Flattens three Publishers into one Publisher, in a way that allows an Subscriber to receive all
3308
+ * Flattens three Publishers into one Publisher, in a way that allows a Subscriber to receive all
3309
3309
* successfully emitted items from all of the source Publishers without being interrupted by an error
3310
3310
* notification from one of them.
3311
3311
* <p>
@@ -3348,7 +3348,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends T> source1, Pu
3348
3348
3349
3349
3350
3350
/**
3351
- * Flattens four Publishers into one Publisher, in a way that allows an Subscriber to receive all
3351
+ * Flattens four Publishers into one Publisher, in a way that allows a Subscriber to receive all
3352
3352
* successfully emitted items from all of the source Publishers without being interrupted by an error
3353
3353
* notification from one of them.
3354
3354
* <p>
@@ -3395,7 +3395,7 @@ public static <T> Flowable<T> mergeDelayError(
3395
3395
}
3396
3396
3397
3397
/**
3398
- * Returns a Flowable that never sends any items or notifications to an {@link Subscriber}.
3398
+ * Returns a Flowable that never sends any items or notifications to a {@link Subscriber}.
3399
3399
* <p>
3400
3400
* <img width="640" height="185" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/never.png" alt="">
3401
3401
* <p>
@@ -3409,7 +3409,7 @@ public static <T> Flowable<T> mergeDelayError(
3409
3409
*
3410
3410
* @param <T>
3411
3411
* the type of items (not) emitted by the Publisher
3412
- * @return a Flowable that never emits any items or sends any notifications to an {@link Subscriber}
3412
+ * @return a Flowable that never emits any items or sends any notifications to a {@link Subscriber}
3413
3413
* @see <a href="http://reactivex.io/documentation/operators/empty-never-throw.html">ReactiveX operators documentation: Never</a>
3414
3414
*/
3415
3415
@BackpressureSupport(BackpressureKind.PASS_THROUGH)
0 commit comments