@@ -6053,7 +6053,7 @@ public final Observable<T> repeat(final long count, Scheduler scheduler) {
6053
6053
* </dl>
6054
6054
*
6055
6055
* @param notificationHandler
6056
- * recieves an Observable of notifications with which a user can complete or error, aborting the repeat.
6056
+ * receives an Observable of notifications with which a user can complete or error, aborting the repeat.
6057
6057
* @param scheduler
6058
6058
* the {@link Scheduler} to emit the items on
6059
6059
* @return the source Observable modified with repeat logic
@@ -6080,7 +6080,7 @@ public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notific
6080
6080
* </dl>
6081
6081
*
6082
6082
* @param notificationHandler
6083
- * recieves an Observable of notifications with which a user can complete or error, aborting the repeat.
6083
+ * receives an Observable of notifications with which a user can complete or error, aborting the repeat.
6084
6084
* @return the source Observable modified with repeat logic
6085
6085
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#repeatwhen">RxJava Wiki: repeatWhen()</a>
6086
6086
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
@@ -6757,7 +6757,7 @@ public final Observable<T> retry(Func2<Integer, Throwable, Boolean> predicate) {
6757
6757
* </dl>
6758
6758
*
6759
6759
* @param notificationHandler
6760
- * recieves an Observable of notifications with which a user can complete or error, aborting the
6760
+ * receives an Observable of notifications with which a user can complete or error, aborting the
6761
6761
* retry
6762
6762
* @return the source Observable modified with retry logic
6763
6763
* @see <a href="https://github.com/Netflix/RxJava/wiki/Error-Handling-Operators#retrywhen">RxJava Wiki: retryWhen()</a>
@@ -6781,7 +6781,7 @@ public final Observable<T> retryWhen(Func1<? super Observable<? extends Notifica
6781
6781
* </dl>
6782
6782
*
6783
6783
* @param notificationHandler
6784
- * recieves an Observable of notifications with which a user can complete or error, aborting the
6784
+ * receives an Observable of notifications with which a user can complete or error, aborting the
6785
6785
* retry
6786
6786
* @param scheduler
6787
6787
* the {@link Scheduler} on which to subscribe to the source Observable
0 commit comments