@@ -266,9 +266,9 @@ private Single<Observable<T>> nest() {
266
266
*
267
267
* @param <T> the common value type
268
268
* @param t1
269
- * an Single to be concatenated
269
+ * a Single to be concatenated
270
270
* @param t2
271
- * an Single to be concatenated
271
+ * a Single to be concatenated
272
272
* @return an Observable that emits items emitted by the two source Singles, one after the other.
273
273
* @see <a href="http://reactivex.io/documentation/operators/concat.html">ReactiveX operators documentation: Concat</a>
274
274
*/
@@ -1504,7 +1504,7 @@ public final Single<T> onErrorReturn(Func1<Throwable, ? extends T> resumeFunctio
1504
1504
* By default, when a Single encounters an error that prevents it from emitting the expected item to
1505
1505
* its {@link Observer}, the Single invokes its Observer's {@code onError} method, and then quits
1506
1506
* without invoking any more of its Observer's methods. The {@code onErrorResumeNext} method changes this
1507
- * behavior. If you pass another Single ({@code resumeSingleInCaseOfError}) to an Single's
1507
+ * behavior. If you pass another Single ({@code resumeSingleInCaseOfError}) to a Single's
1508
1508
* {@code onErrorResumeNext} method, if the original Single encounters an error, instead of invoking its
1509
1509
* Observer's {@code onError} method, it will instead relinquish control to {@code resumeSingleInCaseOfError} which
1510
1510
* will invoke the Observer's {@link Observer#onNext onNext} method if it is able to do so. In such a case,
@@ -1538,7 +1538,7 @@ public final Single<T> onErrorResumeNext(Single<? extends T> resumeSingleInCaseO
1538
1538
* By default, when a Single encounters an error that prevents it from emitting the expected item to
1539
1539
* its {@link Observer}, the Single invokes its Observer's {@code onError} method, and then quits
1540
1540
* without invoking any more of its Observer's methods. The {@code onErrorResumeNext} method changes this
1541
- * behavior. If you pass a function that will return another Single ({@code resumeFunctionInCaseOfError}) to an Single's
1541
+ * behavior. If you pass a function that will return another Single ({@code resumeFunctionInCaseOfError}) to a Single's
1542
1542
* {@code onErrorResumeNext} method, if the original Single encounters an error, instead of invoking its
1543
1543
* Observer's {@code onError} method, it will instead relinquish control to {@code resumeSingleInCaseOfError} which
1544
1544
* will invoke the Observer's {@link Observer#onNext onNext} method if it is able to do so. In such a case,
@@ -2452,7 +2452,7 @@ public final Single<T> doOnSubscribe(final Action0 subscribe) {
2452
2452
}
2453
2453
2454
2454
/**
2455
- * Returns an Single that emits the items emitted by the source Single shifted forward in time by a
2455
+ * Returns a Single that emits the items emitted by the source Single shifted forward in time by a
2456
2456
* specified delay. Error notifications from the source Single are not delayed.
2457
2457
* <p>
2458
2458
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.s.png" alt="">
@@ -2476,7 +2476,7 @@ public final Single<T> delay(long delay, TimeUnit unit, Scheduler scheduler) {
2476
2476
}
2477
2477
2478
2478
/**
2479
- * Returns an Single that emits the items emitted by the source Single shifted forward in time by a
2479
+ * Returns a Single that emits the items emitted by the source Single shifted forward in time by a
2480
2480
* specified delay. Error notifications from the source Observable are not delayed.
2481
2481
* <p>
2482
2482
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
@@ -2646,7 +2646,7 @@ public final Single<T> retry() {
2646
2646
}
2647
2647
2648
2648
/**
2649
- * Returns an Single that mirrors the source Single, resubscribing to it if it calls {@code onError}
2649
+ * Returns a Single that mirrors the source Single, resubscribing to it if it calls {@code onError}
2650
2650
* up to a specified number of retries.
2651
2651
*
2652
2652
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
@@ -2671,7 +2671,7 @@ public final Single<T> retry(final long count) {
2671
2671
}
2672
2672
2673
2673
/**
2674
- * Returns an Single that mirrors the source Single, resubscribing to it if it calls {@code onError}
2674
+ * Returns a Single that mirrors the source Single, resubscribing to it if it calls {@code onError}
2675
2675
* and the predicate returns true for that specific exception and retry count.
2676
2676
*
2677
2677
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/retry.png" alt="">
@@ -2739,7 +2739,7 @@ public final Single<T> retryWhen(final Func1<Observable<? extends Throwable>, ?
2739
2739
}
2740
2740
2741
2741
/**
2742
- * Constructs an Single that creates a dependent resource object which is disposed of on unsubscription.
2742
+ * Constructs a Single that creates a dependent resource object which is disposed of on unsubscription.
2743
2743
* <p>
2744
2744
* <img width="640" height="400" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/using.png" alt="">
2745
2745
* <dl>
@@ -2767,7 +2767,7 @@ public static <T, Resource> Single<T> using(
2767
2767
}
2768
2768
2769
2769
/**
2770
- * Constructs an Single that creates a dependent resource object which is disposed of just before
2770
+ * Constructs a Single that creates a dependent resource object which is disposed of just before
2771
2771
* termination if you have set {@code disposeEagerly} to {@code true} and unsubscription does not occur
2772
2772
* before termination. Otherwise resource disposal will occur on unsubscription. Eager disposal is
2773
2773
* particularly appropriate for a synchronous Single that reuses resources. {@code disposeAction} will
0 commit comments