Skip to content

Commit

Permalink
Fix JavaDoc image for Single#flatMapObservable (#5297)
Browse files Browse the repository at this point in the history
`Single.flatMapObservable.png` should be used for `Single#flatMapObservable` instead of `Single.flatMap.png`.
  • Loading branch information
veyndan authored and akarnokd committed Apr 20, 2017
1 parent 67a951b commit db62772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/reactivex/Single.java
Original file line number Diff line number Diff line change
Expand Up @@ -2097,7 +2097,7 @@ public final <U> Observable<U> flattenAsObservable(final Function<? super T, ? e
* Returns an Observable that is based on applying a specified function to the item emitted by the source Single,
* where that function returns a SingleSource.
* <p>
* <img width="640" height="300" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.flatMap.png" alt="">
* <img width="640" height="300" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.flatMapObservable.png" alt="">
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code flatMapObservable} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down

0 comments on commit db62772

Please sign in to comment.