@@ -5216,7 +5216,7 @@ public final <R> Observable<List<T>> maxBy(Func1<T, R> selector, Comparator<? su
5216
5216
* @return an Observable that emits the result of applying the
5217
5217
* transformation function to each item emitted by the source
5218
5218
* Observable and merging the results of the Observables obtained
5219
- * from this transformation.
5219
+ * from this transformation
5220
5220
* @see <a href="https://github.com/Netflix/RxJava/wiki/Transforming-Observables#mapmany-or-flatmap-and-mapmanydelayerror">RxJava Wiki: flatMap()</a>
5221
5221
* @see #flatMap(Func1)
5222
5222
*/
@@ -5227,6 +5227,8 @@ public final <R> Observable<R> mergeMap(Func1<? super T, ? extends Observable<?
5227
5227
/**
5228
5228
* Create an Observable that projects the notification of an observable sequence to an
5229
5229
* observable sequence and merges the results into one.
5230
+ * <p>
5231
+ * <img width="640" src="https://raw.github.com/wiki/Netflix/RxJava/images/rx-operators/mergeMap.nce.png">
5230
5232
*
5231
5233
* @param <R>
5232
5234
* the result type
@@ -5236,8 +5238,8 @@ public final <R> Observable<R> mergeMap(Func1<? super T, ? extends Observable<?
5236
5238
* function returning a collection to merge for an onError event
5237
5239
* @param onCompleted
5238
5240
* function returning a collection to merge for an onCompleted event
5239
- * @return an Observable that projects the notification of an observable sequence to an observable
5240
- * sequence and merges the results into one.
5241
+ * @return an Observable that projects the notification of an observable sequence to an
5242
+ * observable sequence and merges the results into one
5241
5243
*/
5242
5244
public final <R > Observable <R > mergeMap (
5243
5245
Func1 <? super T , ? extends Observable <? extends R >> onNext ,
0 commit comments