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) {
3786
3786
/**
3787
3787
* Returns a new Observable that emits items resulting from applying a function that you supply to each item
3788
3788
* 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.
3790
3790
* <p>
3791
3791
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/concatMap.png" alt="">
3792
3792
* <dl>
@@ -3798,7 +3798,7 @@ public final R call(R state, T value) {
3798
3798
* a function that, when applied to an item emitted by the source Observable, returns an
3799
3799
* Observable
3800
3800
* @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
3802
3802
* @see <a href="http://reactivex.io/documentation/operators/flatmap.html">ReactiveX operators documentation: FlatMap</a>
3803
3803
*/
3804
3804
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