diff --git a/src/main/java/io/reactivex/Observable.java b/src/main/java/io/reactivex/Observable.java index 2afb282588..5e1923fdc1 100644 --- a/src/main/java/io/reactivex/Observable.java +++ b/src/main/java/io/reactivex/Observable.java @@ -2222,7 +2222,7 @@ public static Observable intervalRange(long start, long count, long initia /** * Returns an Observable that emits a single item and then completes. *

- * + * *

* To convert any object into an ObservableSource that emits that object, pass that object into the {@code just} * method. @@ -3341,7 +3341,7 @@ public static Observable range(final int start, final int count) { /** * Returns an Observable that emits a sequence of Longs within a specified range. *

- * + * *

*
Scheduler:
*
{@code rangeLong} does not operate by default on a particular {@link Scheduler}.
@@ -10603,10 +10603,12 @@ public final Observable skipWhile(Predicate predicate) { * Returns an Observable that emits the events emitted by source ObservableSource, in a * sorted order. Each item emitted by the ObservableSource must implement {@link Comparable} with respect to all * other items in the sequence. - * - *

If any item emitted by this Observable does not implement {@link Comparable} with respect to - * all other items emitted by this Observable, no items will be emitted and the - * sequence is terminated with a {@link ClassCastException}. + *

+ * + *

+ * If any item emitted by this Observable does not implement {@link Comparable} with respect to + * all other items emitted by this Observable, no items will be emitted and the + * sequence is terminated with a {@link ClassCastException}. * *

Note that calling {@code sorted} with long, non-terminating or infinite sources * might cause {@link OutOfMemoryError} @@ -10698,7 +10700,7 @@ public final Observable startWith(ObservableSource other) { * Returns an Observable that emits a specified item before it begins to emit items emitted by the source * ObservableSource. *

- * + * *

*
Scheduler:
*
{@code startWith} does not operate by default on a particular {@link Scheduler}.
@@ -10722,7 +10724,7 @@ public final Observable startWith(T item) { * Returns an Observable that emits the specified items before it begins to emit items emitted by the source * ObservableSource. *

- * + * *

*
Scheduler:
*
{@code startWithArray} does not operate by default on a particular {@link Scheduler}.