@@ -2222,7 +2222,7 @@ public static Observable<Long> intervalRange(long start, long count, long initia
2222
2222
/**
2223
2223
* Returns an Observable that emits a single item and then completes.
2224
2224
* <p>
2225
- * <img width="640" height="310 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.png" alt="">
2225
+ * <img width="640" height="290 " src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/just.item .png" alt="">
2226
2226
* <p>
2227
2227
* To convert any object into an ObservableSource that emits that object, pass that object into the {@code just}
2228
2228
* method.
@@ -3341,7 +3341,7 @@ public static Observable<Integer> range(final int start, final int count) {
3341
3341
/**
3342
3342
* Returns an Observable that emits a sequence of Longs within a specified range.
3343
3343
* <p>
3344
- * <img width="640" height="195" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/range .png" alt="">
3344
+ * <img width="640" height="195" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/rangeLong .png" alt="">
3345
3345
* <dl>
3346
3346
* <dt><b>Scheduler:</b></dt>
3347
3347
* <dd>{@code rangeLong} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -10603,10 +10603,12 @@ public final Observable<T> skipWhile(Predicate<? super T> predicate) {
10603
10603
* Returns an Observable that emits the events emitted by source ObservableSource, in a
10604
10604
* sorted order. Each item emitted by the ObservableSource must implement {@link Comparable} with respect to all
10605
10605
* other items in the sequence.
10606
- *
10607
- * <p>If any item emitted by this Observable does not implement {@link Comparable} with respect to
10608
- * all other items emitted by this Observable, no items will be emitted and the
10609
- * sequence is terminated with a {@link ClassCastException}.
10606
+ * <p>
10607
+ * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/sorted.png" alt="">
10608
+ * <p>
10609
+ * If any item emitted by this Observable does not implement {@link Comparable} with respect to
10610
+ * all other items emitted by this Observable, no items will be emitted and the
10611
+ * sequence is terminated with a {@link ClassCastException}.
10610
10612
*
10611
10613
* <p>Note that calling {@code sorted} with long, non-terminating or infinite sources
10612
10614
* might cause {@link OutOfMemoryError}
@@ -10698,7 +10700,7 @@ public final Observable<T> startWith(ObservableSource<? extends T> other) {
10698
10700
* Returns an Observable that emits a specified item before it begins to emit items emitted by the source
10699
10701
* ObservableSource.
10700
10702
* <p>
10701
- * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/startWith.png" alt="">
10703
+ * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/startWith.item. png" alt="">
10702
10704
* <dl>
10703
10705
* <dt><b>Scheduler:</b></dt>
10704
10706
* <dd>{@code startWith} does not operate by default on a particular {@link Scheduler}.</dd>
@@ -10722,7 +10724,7 @@ public final Observable<T> startWith(T item) {
10722
10724
* Returns an Observable that emits the specified items before it begins to emit items emitted by the source
10723
10725
* ObservableSource.
10724
10726
* <p>
10725
- * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/startWith .png" alt="">
10727
+ * <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/startWithArray .png" alt="">
10726
10728
* <dl>
10727
10729
* <dt><b>Scheduler:</b></dt>
10728
10730
* <dd>{@code startWithArray} does not operate by default on a particular {@link Scheduler}.</dd>
0 commit comments