diff --git a/src/main/java/io/reactivex/Maybe.java b/src/main/java/io/reactivex/Maybe.java index a2e033acbc..bc48c23f4f 100644 --- a/src/main/java/io/reactivex/Maybe.java +++ b/src/main/java/io/reactivex/Maybe.java @@ -2191,7 +2191,7 @@ public final Single count() { /** * Returns a Maybe that emits the item emitted by the source Maybe or a specified default item - * if the source Maybe is empty. + * if the source Maybe is empty. A Single instance can be obtained using the toSingle() method. *

* *

@@ -2204,6 +2204,7 @@ public final Single count() { * @return a Maybe that emits either the specified default item if the source Maybe emits no * items, or the items emitted by the source Maybe * @see ReactiveX operators documentation: DefaultIfEmpty + * @see #toSingle() */ @CheckReturnValue @SchedulerSupport(SchedulerSupport.NONE)