diff --git a/src/main/java/rx/Observable.java b/src/main/java/rx/Observable.java index 3f27cb0a83..0672f4cb90 100644 --- a/src/main/java/rx/Observable.java +++ b/src/main/java/rx/Observable.java @@ -201,6 +201,7 @@ public interface Transformer extends Func1, Observable> { * emits only a single item. If the source Observable emits more than one item or no items, notify of an * {@code IllegalArgumentException} or {@code NoSuchElementException} respectively. *

+ * *

*
Scheduler:
*
{@code toSingle} does not operate by default on a particular {@link Scheduler}.
@@ -211,6 +212,8 @@ public interface Transformer extends Func1, Observable> { * if the source observable emits more than one item * @throws NoSuchElementException * if the source observable emits no items + * @see ReactiveX documentation: Single + * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number) */ @Experimental public Single toSingle() {