|
49 | 49 | * <p>
|
50 | 50 | * The Flowable hosts the default buffer size of 128 elements for operators, accessible via {@link #bufferSize()},
|
51 | 51 | * that can be overridden globally via the system parameter {@code rx2.buffer-size}. Most operators, however, have
|
52 |
| - * overloads that allow setting their internal buffer size explicity. |
| 52 | + * overloads that allow setting their internal buffer size explicitly. |
53 | 53 | * <p>
|
54 | 54 | * The documentation for this class makes use of marble diagrams. The following legend explains these diagrams:
|
55 | 55 | * <p>
|
@@ -2688,7 +2688,7 @@ public static final <T> Flowable<T> just(T v1, T v2, T v3, T v4, T v5, T v6, T v
|
2688 | 2688 | Objects.requireNonNull(v5, "The fifth value is null");
|
2689 | 2689 | Objects.requireNonNull(v6, "The sixth value is null");
|
2690 | 2690 | Objects.requireNonNull(v7, "The seventh value is null");
|
2691 |
| - Objects.requireNonNull(v8, "The eigth value is null"); |
| 2691 | + Objects.requireNonNull(v8, "The eighth value is null"); |
2692 | 2692 |
|
2693 | 2693 | return fromArray(v1, v2, v3, v4, v5, v6, v7, v8);
|
2694 | 2694 | }
|
@@ -2738,7 +2738,7 @@ public static final <T> Flowable<T> just(T v1, T v2, T v3, T v4, T v5, T v6, T v
|
2738 | 2738 | Objects.requireNonNull(v5, "The fifth value is null");
|
2739 | 2739 | Objects.requireNonNull(v6, "The sixth value is null");
|
2740 | 2740 | Objects.requireNonNull(v7, "The seventh value is null");
|
2741 |
| - Objects.requireNonNull(v8, "The eigth value is null"); |
| 2741 | + Objects.requireNonNull(v8, "The eighth value is null"); |
2742 | 2742 | Objects.requireNonNull(v9, "The ninth is null");
|
2743 | 2743 |
|
2744 | 2744 | return fromArray(v1, v2, v3, v4, v5, v6, v7, v8, v9);
|
@@ -2791,7 +2791,7 @@ public static final <T> Flowable<T> just(T v1, T v2, T v3, T v4, T v5, T v6, T v
|
2791 | 2791 | Objects.requireNonNull(v5, "The fifth value is null");
|
2792 | 2792 | Objects.requireNonNull(v6, "The sixth value is null");
|
2793 | 2793 | Objects.requireNonNull(v7, "The seventh value is null");
|
2794 |
| - Objects.requireNonNull(v8, "The eigth value is null"); |
| 2794 | + Objects.requireNonNull(v8, "The eighth value is null"); |
2795 | 2795 | Objects.requireNonNull(v9, "The ninth is null");
|
2796 | 2796 | Objects.requireNonNull(v10, "The tenth is null");
|
2797 | 2797 |
|
@@ -5060,7 +5060,7 @@ public final Flowable<T> ambWith(Publisher<? extends T> other) {
|
5060 | 5060 | * <dl>
|
5061 | 5061 | * <dt><b>Backpressure:</b></dt>
|
5062 | 5062 | * <dd>The operator honors backpressure from downstream and consumes the source {@code Publisher} in an unbounded manner
|
5063 |
| - * (i.e., no backkpressure applied to it).</dd> |
| 5063 | + * (i.e., no backpressure applied to it).</dd> |
5064 | 5064 | * <dt><b>Scheduler:</b></dt>
|
5065 | 5065 | * <dd>{@code exists} does not operate by default on a particular {@link Scheduler}.</dd>
|
5066 | 5066 | * </dl>
|
@@ -6042,7 +6042,7 @@ public final <R> Flowable<R> compose(FlowableTransformer<T, R> composer) {
|
6042 | 6042 | * <dd>{@code concatMap} does not operate by default on a particular {@link Scheduler}.</dd>
|
6043 | 6043 | * </dl>
|
6044 | 6044 | *
|
6045 |
| - * @param <R> the type of the inner Publisher sources and thus the ouput type |
| 6045 | + * @param <R> the type of the inner Publisher sources and thus the output type |
6046 | 6046 | * @param mapper
|
6047 | 6047 | * a function that, when applied to an item emitted by the source Publisher, returns an
|
6048 | 6048 | * Publisher
|
@@ -6073,7 +6073,7 @@ public final <R> Flowable<R> concatMap(Function<? super T, ? extends Publisher<?
|
6073 | 6073 | * <dd>{@code concatMap} does not operate by default on a particular {@link Scheduler}.</dd>
|
6074 | 6074 | * </dl>
|
6075 | 6075 | *
|
6076 |
| - * @param <R> the type of the inner Publisher sources and thus the ouput type |
| 6076 | + * @param <R> the type of the inner Publisher sources and thus the output type |
6077 | 6077 | * @param mapper
|
6078 | 6078 | * a function that, when applied to an item emitted by the source Publisher, returns an
|
6079 | 6079 | * Publisher
|
@@ -7281,7 +7281,7 @@ public final Flowable<T> doOnError(Consumer<? super Throwable> onError) {
|
7281 | 7281 | }
|
7282 | 7282 |
|
7283 | 7283 | /**
|
7284 |
| - * Calls the appropriate onXXX method (shared between all Subscribers) for the lifecylce events of |
| 7284 | + * Calls the appropriate onXXX method (shared between all Subscribers) for the lifecylcle events of |
7285 | 7285 | * the sequence (subscription, cancellation, requesting).
|
7286 | 7286 | * <p>
|
7287 | 7287 | * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doOnNext.png" alt="">
|
@@ -7431,7 +7431,7 @@ public void accept(Throwable e) {
|
7431 | 7431 | * <dl>
|
7432 | 7432 | * <dt><b>Backpressure:</b></dt>
|
7433 | 7433 | * <dd>The operator honors backpressure from downstream and consumes the source {@code Publisher} in an unbounded manner
|
7434 |
| - * (i.e., no backkpressure applied to it).</dd> |
| 7434 | + * (i.e., no backpressure applied to it).</dd> |
7435 | 7435 | * <dt><b>Scheduler:</b></dt>
|
7436 | 7436 | * <dd>{@code elementAt} does not operate by default on a particular {@link Scheduler}.</dd>
|
7437 | 7437 | * </dl>
|
@@ -7463,7 +7463,7 @@ public final Flowable<T> elementAt(long index) {
|
7463 | 7463 | * <dl>
|
7464 | 7464 | * <dt><b>Backpressure:</b></dt>
|
7465 | 7465 | * <dd>The operator honors backpressure from downstream and consumes the source {@code Publisher} in an unbounded manner
|
7466 |
| - * (i.e., no backkpressure applied to it).</dd> |
| 7466 | + * (i.e., no backpressure applied to it).</dd> |
7467 | 7467 | * <dt><b>Scheduler:</b></dt>
|
7468 | 7468 | * <dd>{@code elementAtOrDefault} does not operate by default on a particular {@link Scheduler}.</dd>
|
7469 | 7469 | * </dl>
|
@@ -7969,7 +7969,7 @@ public final <U, R> Flowable<R> flatMap(Function<? super T, ? extends Publisher<
|
7969 | 7969 | * if true, exceptions from the current Flowable and all inner Publishers are delayed until all of them terminate
|
7970 | 7970 | * if false, the first one signalling an exception will terminate the whole sequence immediately
|
7971 | 7971 | * @param bufferSize
|
7972 |
| - * the numer of elements to prefetch from the innner Publishers. |
| 7972 | + * the number of elements to prefetch from the innner Publishers. |
7973 | 7973 | * @return a Flowable that emits the results of applying a function to a pair of values emitted by the
|
7974 | 7974 | * source Publisher and the collection Publisher
|
7975 | 7975 | * @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
|
@@ -8081,7 +8081,7 @@ public final <U> Flowable<U> flatMapIterable(final Function<? super T, ? extends
|
8081 | 8081 | * a function that returns an Iterable sequence of values for when given an item emitted by the
|
8082 | 8082 | * source Publisher
|
8083 | 8083 | * @param bufferSize
|
8084 |
| - * the numer of elements to prefetch from the current Flowable |
| 8084 | + * the number of elements to prefetch from the current Flowable |
8085 | 8085 | * @return a Flowable that emits the results of merging the items emitted by the source Publisher with
|
8086 | 8086 | * the values in the Iterables corresponding to those items, as generated by {@code collectionSelector}
|
8087 | 8087 | * @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
|
@@ -8159,7 +8159,7 @@ public Publisher<U> apply(T t) throws Exception {
|
8159 | 8159 | * a function that returns an item based on the item emitted by the source Publisher and the
|
8160 | 8160 | * Iterable returned for that item by the {@code collectionSelector}
|
8161 | 8161 | * @param prefetch
|
8162 |
| - * the numer of elements to prefetch from the current Flowable |
| 8162 | + * the number of elements to prefetch from the current Flowable |
8163 | 8163 | * @return a Flowable that emits the results of merging the items emitted by the source Publisher with
|
8164 | 8164 | * the values in the Iterables corresponding to those items, as generated by {@code collectionSelector}
|
8165 | 8165 | * @throws IllegalArgumentException
|
@@ -9813,7 +9813,7 @@ public final <R> Flowable<R> reduce(R seed, BiFunction<R, ? super T, R> reducer)
|
9813 | 9813 | *
|
9814 | 9814 | * @param <R> the accumulator and output value type
|
9815 | 9815 | * @param seedSupplier
|
9816 |
| - * the Callbable that provides the initial (seed) accumulator value for each individual Subscriber |
| 9816 | + * the Callable that provides the initial (seed) accumulator value for each individual Subscriber |
9817 | 9817 | * @param reducer
|
9818 | 9818 | * an accumulator function to be invoked on each item emitted by the source Publisher, the
|
9819 | 9819 | * result of which will be used in the next accumulator call
|
|
0 commit comments