File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3786,7 +3786,7 @@ public final R call(R state, T value) {
37863786 /**
37873787 * Returns a new Observable that emits items resulting from applying a function that you supply to each item
37883788 * emitted by the source Observable, where that function returns an Observable, and then emitting the items
3789- * that result from concatinating those resulting Observables.
3789+ * that result from concatenating those resulting Observables.
37903790 * <p>
37913791 * <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/concatMap.png" alt="">
37923792 * <dl>
@@ -3798,7 +3798,7 @@ public final R call(R state, T value) {
37983798 * a function that, when applied to an item emitted by the source Observable, returns an
37993799 * Observable
38003800 * @return an Observable that emits the result of applying the transformation function to each item emitted
3801- * by the source Observable and concatinating the Observables obtained from this transformation
3801+ * by the source Observable and concatenating the Observables obtained from this transformation
38023802 * @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
38033803 */
38043804 public final <R> Observable<R> concatMap(Func1<? super T, ? extends Observable<? extends R>> func) {
You can’t perform that action at this time.
0 commit comments