Skip to content

Commit 68451ca

Browse files
committed
Merge pull request #3586 from mariusznet/1.x
Fixed typo
2 parents 8d3a0c5 + 56cd393 commit 68451ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)