@@ -3685,7 +3685,7 @@ public final Single<T> toSingle() {
3685
3685
* <dt><b>Scheduler:</b></dt>
3686
3686
* <dd>{@code onErrorComplete} does not operate by default on a particular {@link Scheduler}.</dd>
3687
3687
* </dl>
3688
- * @return the new Completable instance
3688
+ * @return the new Maybe instance
3689
3689
*/
3690
3690
@ CheckReturnValue
3691
3691
@ SchedulerSupport (SchedulerSupport .NONE )
@@ -3702,7 +3702,7 @@ public final Maybe<T> onErrorComplete() {
3702
3702
* </dl>
3703
3703
* @param predicate the predicate to call when an Throwable is emitted which should return true
3704
3704
* if the Throwable should be swallowed and replaced with an onComplete.
3705
- * @return the new Completable instance
3705
+ * @return the new Maybe instance
3706
3706
*/
3707
3707
@ CheckReturnValue
3708
3708
@ NonNull
@@ -3984,7 +3984,7 @@ public final Flowable<T> repeatWhen(final Function<? super Flowable<Object>, ? e
3984
3984
* <dd>{@code retry} does not operate by default on a particular {@link Scheduler}.</dd>
3985
3985
* </dl>
3986
3986
*
3987
- * @return the nww Maybe instance
3987
+ * @return the new Maybe instance
3988
3988
* @see <a href="http://reactivex.io/documentation/operators/retry.html">ReactiveX operators documentation: Retry</a>
3989
3989
*/
3990
3990
@ CheckReturnValue
@@ -4006,7 +4006,7 @@ public final Maybe<T> retry() {
4006
4006
* @param predicate
4007
4007
* the predicate that determines if a resubscription may happen in case of a specific exception
4008
4008
* and retry count
4009
- * @return the nww Maybe instance
4009
+ * @return the new Maybe instance
4010
4010
* @see #retry()
4011
4011
* @see <a href="http://reactivex.io/documentation/operators/retry.html">ReactiveX operators documentation: Retry</a>
4012
4012
*/
0 commit comments