@@ -408,7 +408,7 @@ public static <T, R> Flowable<R> combineLatestDelayError(Function<? super Object
408408
409409 /**
410410 * 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
412412 * aggregation is defined by a specified function and delays any error from the sources until
413413 * all source Publishers terminate.
414414 * <p>
@@ -1274,7 +1274,7 @@ public static <T> Flowable<T> concatArrayDelayError(Publisher<? extends T>... so
12741274 * in order, each one after the previous one completes.
12751275 * <dl>
12761276 * <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}
12781278 * sources are expected to honor backpressure as well.
12791279 * If any of the source {@code Publisher}s violate this, the operator will signal a
12801280 * {@code MissingBackpressureException}.</dd>
@@ -1300,7 +1300,7 @@ public static <T> Flowable<T> concatArrayEager(Publisher<? extends T>... sources
13001300 * in order, each one after the previous one completes.
13011301 * <dl>
13021302 * <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}
13041304 * sources are expected to honor backpressure as well.
13051305 * If any of the source {@code Publisher}s violate this, the operator will signal a
13061306 * {@code MissingBackpressureException}.</dd>
@@ -1564,7 +1564,7 @@ public static <T> Flowable<T> create(FlowableOnSubscribe<T> source, FlowableEmit
15641564 * <img width="640" height="340" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/defer.png" alt="">
15651565 * <p>
15661566 * 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
15681568 * refreshed version of the sequence.
15691569 * <dl>
15701570 * <dt><b>Backpressure:</b></dt>
@@ -1616,7 +1616,7 @@ public static <T> Flowable<T> empty() {
16161616 }
16171617
16181618 /**
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
16201620 * Subscriber subscribes to it.
16211621 * <p>
16221622 * <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) {
16431643 }
16441644
16451645 /**
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
16471647 * Subscriber subscribes to it.
16481648 * <p>
16491649 * <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) {
17021702 }
17031703
17041704 /**
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
17061706 * emits the value returned from that function.
17071707 * <p>
17081708 * <img width="640" height="195" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/fromCallable.png" alt="">
17091709 * <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
17111711 * Publisher. That is to say, it makes the function "lazy."
17121712 * <dl>
17131713 * <dt><b>Backpressure:</b></dt>
@@ -1718,7 +1718,7 @@ public static <T> Flowable<T> fromArray(T... items) {
17181718 *
17191719 * @param supplier
17201720 * 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
17221722 * @param <T>
17231723 * the type of the item emitted by the Publisher
17241724 * @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
21512151 * <dl>
21522152 * <dt><b>Backpressure:</b></dt>
21532153 * <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>
21552155 * <dt><b>Scheduler:</b></dt>
21562156 * <dd>{@code interval} operates by default on the {@code computation} {@link Scheduler}.</dd>
21572157 * </dl>
@@ -3007,7 +3007,7 @@ public static <T> Flowable<T> merge(
30073007 }
30083008
30093009 /**
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
30113011 * successfully emitted items from each of the source Publishers without being interrupted by an error
30123012 * notification from one of them.
30133013 * <p>
@@ -3043,7 +3043,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
30433043
30443044
30453045 /**
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
30473047 * successfully emitted items from each of the source Publishers without being interrupted by an error
30483048 * notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
30493049 * <p>
@@ -3082,7 +3082,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
30823082 }
30833083
30843084 /**
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
30863086 * successfully emitted items from each of the source Publishers without being interrupted by an error
30873087 * notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
30883088 * <p>
@@ -3121,7 +3121,7 @@ public static <T> Flowable<T> mergeArrayDelayError(int maxConcurrency, int buffe
31213121 }
31223122
31233123 /**
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
31253125 * successfully emitted items from each of the source Publishers without being interrupted by an error
31263126 * notification from one of them, while limiting the number of concurrent subscriptions to these Publishers.
31273127 * <p>
@@ -3158,7 +3158,7 @@ public static <T> Flowable<T> mergeDelayError(Iterable<? extends Publisher<? ext
31583158 }
31593159
31603160 /**
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
31623162 * receive all successfully emitted items from all of the source Publishers without being interrupted by
31633163 * an error notification from one of them.
31643164 * <p>
@@ -3193,7 +3193,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends Publisher<? ex
31933193 }
31943194
31953195 /**
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
31973197 * receive all successfully emitted items from all of the source Publishers without being interrupted by
31983198 * an error notification from one of them, while limiting the
31993199 * number of concurrent subscriptions to these Publishers.
@@ -3232,7 +3232,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends Publisher<? ex
32323232 }
32333233
32343234 /**
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
32363236 * successfully emitted items from each of the source Publishers without being interrupted by an error
32373237 * notification from one of them.
32383238 * <p>
@@ -3267,7 +3267,7 @@ public static <T> Flowable<T> mergeArrayDelayError(Publisher<? extends T>... sou
32673267 }
32683268
32693269 /**
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
32713271 * successfully emitted items from each of the source Publishers without being interrupted by an error
32723272 * notification from one of them.
32733273 * <p>
@@ -3305,7 +3305,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends T> source1, Pu
33053305 }
33063306
33073307 /**
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
33093309 * successfully emitted items from all of the source Publishers without being interrupted by an error
33103310 * notification from one of them.
33113311 * <p>
@@ -3348,7 +3348,7 @@ public static <T> Flowable<T> mergeDelayError(Publisher<? extends T> source1, Pu
33483348
33493349
33503350 /**
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
33523352 * successfully emitted items from all of the source Publishers without being interrupted by an error
33533353 * notification from one of them.
33543354 * <p>
@@ -3395,7 +3395,7 @@ public static <T> Flowable<T> mergeDelayError(
33953395 }
33963396
33973397 /**
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}.
33993399 * <p>
34003400 * <img width="640" height="185" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/never.png" alt="">
34013401 * <p>
@@ -3409,7 +3409,7 @@ public static <T> Flowable<T> mergeDelayError(
34093409 *
34103410 * @param <T>
34113411 * 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}
34133413 * @see <a href="http://reactivex.io/documentation/operators/empty-never-throw.html">ReactiveX operators documentation: Never</a>
34143414 */
34153415 @BackpressureSupport(BackpressureKind.PASS_THROUGH)
0 commit comments