@@ -8163,7 +8163,7 @@ public final Flowable<T> filter(Predicate<? super T> predicate) {
81638163 * Returns a Maybe that emits only the very first item emitted by this Flowable or
81648164 * completes if this Flowable is empty.
81658165 * <p>
8166- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/first .png" alt="">
8166+ * <img width="640" height="237 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstElement.m .png" alt="">
81678167 * <dl>
81688168 * <dt><b>Backpressure:</b></dt>
81698169 * <dd>The operator honors backpressure from downstream and consumes the source {@code Publisher} in an
@@ -8186,7 +8186,7 @@ public final Maybe<T> firstElement() {
81868186 * Returns a Single that emits only the very first item emitted by this Flowable, or a default
81878187 * item if this Flowable completes without emitting anything.
81888188 * <p>
8189- * <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/firstOrDefault .png" alt="">
8189+ * <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/first.s .png" alt="">
81908190 * <dl>
81918191 * <dt><b>Backpressure:</b></dt>
81928192 * <dd>The operator honors backpressure from downstream and consumes the source {@code Publisher} in an
@@ -8772,7 +8772,7 @@ public final Completable flatMapCompletable(Function<? super T, ? extends Comple
87728772 * Returns a Flowable that merges each item emitted by the source Publisher with the values in an
87738773 * Iterable corresponding to that item that is generated by a selector.
87748774 * <p>
8775- * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMapIterable .png" alt="">
8775+ * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.f .png" alt="">
87768776 * <dl>
87778777 * <dt><b>Backpressure:</b></dt>
87788778 * <dd>The operator honors backpressure from downstream. The source {@code Publisher}s is
@@ -8802,7 +8802,7 @@ public final <U> Flowable<U> flatMapIterable(final Function<? super T, ? extends
88028802 * Returns a Flowable that merges each item emitted by the source Publisher with the values in an
88038803 * Iterable corresponding to that item that is generated by a selector.
88048804 * <p>
8805- * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMapIterable .png" alt="">
8805+ * <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.f .png" alt="">
88068806 * <dl>
88078807 * <dt><b>Backpressure:</b></dt>
88088808 * <dd>The operator honors backpressure from downstream. The source {@code Publisher}s is
@@ -8836,7 +8836,7 @@ public final <U> Flowable<U> flatMapIterable(final Function<? super T, ? extends
88368836 * Returns a Flowable that emits the results of applying a function to the pair of values from the source
88378837 * Publisher and an Iterable corresponding to that item that is generated by a selector.
88388838 * <p>
8839- * <img width="640" height="390 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMapIterable .r.png" alt="">
8839+ * <img width="640" height="410 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.f .r.png" alt="">
88408840 * <dl>
88418841 * <dt><b>Backpressure:</b></dt>
88428842 * <dd>The operator honors backpressure from downstream and the source {@code Publisher}s is
@@ -8874,7 +8874,7 @@ public final <U, V> Flowable<V> flatMapIterable(final Function<? super T, ? exte
88748874 * Iterable corresponding to that item that is generated by a selector, while limiting the number of concurrent
88758875 * subscriptions to these Publishers.
88768876 * <p>
8877- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/mergeMapIterable .png" alt="">
8877+ * <img width="640" height="410 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/flatMapIterable.f.r .png" alt="">
88788878 * <dl>
88798879 * <dt><b>Backpressure:</b></dt>
88808880 * <dd>The operator honors backpressure from downstream. The source {@code Publisher}s is
0 commit comments