@@ -5330,7 +5330,7 @@ public U apply(T v) {
5330
5330
*/
5331
5331
@SchedulerSupport(SchedulerSupport.NONE)
5332
5332
public final <U> Observable<U> collect(Callable<? extends U> initialValueSupplier, BiConsumer<? super U, ? super T> collector) {
5333
- Objects.requireNonNull(initialValueSupplier, "initalValueSupplier is null");
5333
+ Objects.requireNonNull(initialValueSupplier, "initialValueSupplier is null");
5334
5334
Objects.requireNonNull(collector, "collector is null");
5335
5335
return new ObservableCollect<T, U>(this, initialValueSupplier, collector);
5336
5336
}
@@ -6468,7 +6468,7 @@ public final Observable<T> doOnError(Consumer<? super Throwable> onError) {
6468
6468
}
6469
6469
6470
6470
/**
6471
- * Calls the appropriate onXXX method (shared between all Subscribers) for the lifecylcle events of
6471
+ * Calls the appropriate onXXX method (shared between all Subscribers) for the lifecycle events of
6472
6472
* the sequence (subscription, cancellation, requesting).
6473
6473
* <p>
6474
6474
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doOnNext.png" alt="">
@@ -7041,7 +7041,7 @@ public final <U, R> Observable<R> flatMap(Function<? super T, ? extends Observab
7041
7041
* if true, exceptions from the current Observable and all inner ObservableSources are delayed until all of them terminate
7042
7042
* if false, the first one signalling an exception will terminate the whole sequence immediately
7043
7043
* @param bufferSize
7044
- * the number of elements to prefetch from the innner ObservableSources.
7044
+ * the number of elements to prefetch from the inner ObservableSources.
7045
7045
* @return a Observable that emits the results of applying a function to a pair of values emitted by the
7046
7046
* source ObservableSource and the collection ObservableSource
7047
7047
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
@@ -7869,7 +7869,7 @@ public final Observable<T> observeOn(Scheduler scheduler, boolean delayError, in
7869
7869
* @param <U> the output type
7870
7870
* @param clazz
7871
7871
* the class type to filter the items emitted by the source ObservableSource
7872
- * @return a Observable that emits items from the source ObservableSource of type {@code klass }
7872
+ * @return a Observable that emits items from the source ObservableSource of type {@code clazz }
7873
7873
* @see <a href="http://reactivex.io/documentation/operators/filter.html">ReactiveX operators documentation: Filter</a>
7874
7874
*/
7875
7875
@SchedulerSupport(SchedulerSupport.NONE)
0 commit comments