@@ -1327,7 +1327,7 @@ public static <T> Flowable<T> mergeDelayError(
1327
1327
}
1328
1328
1329
1329
/**
1330
- * Returns a singleton instance of a never-signalling Single (only calls onSubscribe).
1330
+ * Returns a singleton instance of a never-signaling Single (only calls onSubscribe).
1331
1331
* <p>
1332
1332
* <img width="640" height="244" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.never.png" alt="">
1333
1333
* <dl>
@@ -2526,14 +2526,14 @@ public final Single<T> doOnSubscribe(final Consumer<? super Disposable> onSubscr
2526
2526
* <p>
2527
2527
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/doOnTerminate.png" alt="">
2528
2528
* <p>
2529
- * This differs from {@code doAfterTerminate} in that this happens <em>before</em> the {@code onComplete } or
2529
+ * This differs from {@code doAfterTerminate} in that this happens <em>before</em> the {@code onSuccess } or
2530
2530
* {@code onError} notification.
2531
2531
* <dl>
2532
2532
* <dt><b>Scheduler:</b></dt>
2533
2533
* <dd>{@code doOnTerminate} does not operate by default on a particular {@link Scheduler}.</dd>
2534
2534
* </dl>
2535
2535
* <p>History: 2.2.7 - experimental
2536
- * @param onTerminate the action to invoke when the consumer calls {@code onComplete } or {@code onError}
2536
+ * @param onTerminate the action to invoke when the consumer calls {@code onSuccess } or {@code onError}
2537
2537
* @return the new Single instance
2538
2538
* @see <a href="http://reactivex.io/documentation/operators/do.html">ReactiveX operators documentation: Do</a>
2539
2539
* @see #doOnTerminate(Action)
@@ -3471,12 +3471,12 @@ public final Single<T> retry(Predicate<? super Throwable> predicate) {
3471
3471
* Re-subscribes to the current Single if and when the Publisher returned by the handler
3472
3472
* function signals a value.
3473
3473
* <p>
3474
- * If the Publisher signals an onComplete, the resulting Single will signal a NoSuchElementException.
3474
+ * If the Publisher signals an {@code onComplete} , the resulting {@code Single} will signal a {@link NoSuchElementException} .
3475
3475
* <p>
3476
3476
* Note that the inner {@code Publisher} returned by the handler function should signal
3477
3477
* either {@code onNext}, {@code onError} or {@code onComplete} in response to the received
3478
3478
* {@code Throwable} to indicate the operator should retry or terminate. If the upstream to
3479
- * the operator is asynchronous, signalling onNext followed by onComplete immediately may
3479
+ * the operator is asynchronous, signaling onNext followed by onComplete immediately may
3480
3480
* result in the sequence to be completed immediately. Similarly, if this inner
3481
3481
* {@code Publisher} signals {@code onError} or {@code onComplete} while the upstream is
3482
3482
* active, the sequence is terminated with the same signal immediately.
@@ -3900,15 +3900,15 @@ public final <R> R to(@NonNull SingleConverter<T, ? extends R> converter) {
3900
3900
3901
3901
/**
3902
3902
* Returns a {@link Completable} that ignores the success value of this {@link Single}
3903
- * and calls {@code onComplete} instead on the returned {@code Completable} .
3903
+ * and signals {@code onComplete} instead.
3904
3904
* <p>
3905
3905
* <img width="640" height="436" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.ignoreElement.png" alt="">
3906
3906
* <dl>
3907
3907
* <dt><b>Scheduler:</b></dt>
3908
3908
* <dd>{@code ignoreElement} does not operate by default on a particular {@link Scheduler}.</dd>
3909
3909
* </dl>
3910
3910
*
3911
- * @return a {@link Completable} that calls {@code onComplete} on it's observer when the source {@link Single}
3911
+ * @return a {@link Completable} that signals {@code onComplete} on it's observer when the source {@link Single}
3912
3912
* calls {@code onSuccess}.
3913
3913
* @since 2.1.13
3914
3914
*/
0 commit comments