Skip to content

Commit

Permalink
Merge pull request #1518 from SeanPONeil/typo_fixes
Browse files Browse the repository at this point in the history
Fix typos in javadoc comments.
  • Loading branch information
benjchristensen committed Jul 25, 2014
2 parents eccbe4c + db76ba2 commit 254cac1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rxjava-core/src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -6053,7 +6053,7 @@ public final Observable<T> repeat(final long count, Scheduler scheduler) {
* </dl>
*
* @param notificationHandler
* recieves an Observable of notifications with which a user can complete or error, aborting the repeat.
* receives an Observable of notifications with which a user can complete or error, aborting the repeat.
* @param scheduler
* the {@link Scheduler} to emit the items on
* @return the source Observable modified with repeat logic
Expand All @@ -6080,7 +6080,7 @@ public final Observable<T> repeatWhen(Func1<? super Observable<? extends Notific
* </dl>
*
* @param notificationHandler
* recieves an Observable of notifications with which a user can complete or error, aborting the repeat.
* receives an Observable of notifications with which a user can complete or error, aborting the repeat.
* @return the source Observable modified with repeat logic
* @see <a href="https://github.com/Netflix/RxJava/wiki/Creating-Observables#repeatwhen">RxJava Wiki: repeatWhen()</a>
* @see <a href="http://msdn.microsoft.com/en-us/library/hh229428.aspx">MSDN: Observable.Repeat</a>
Expand Down Expand Up @@ -6757,7 +6757,7 @@ public final Observable<T> retry(Func2<Integer, Throwable, Boolean> predicate) {
* </dl>
*
* @param notificationHandler
* recieves an Observable of notifications with which a user can complete or error, aborting the
* receives an Observable of notifications with which a user can complete or error, aborting the
* retry
* @return the source Observable modified with retry logic
* @see <a href="https://github.com/Netflix/RxJava/wiki/Error-Handling-Operators#retrywhen">RxJava Wiki: retryWhen()</a>
Expand All @@ -6781,7 +6781,7 @@ public final Observable<T> retryWhen(Func1<? super Observable<? extends Notifica
* </dl>
*
* @param notificationHandler
* recieves an Observable of notifications with which a user can complete or error, aborting the
* receives an Observable of notifications with which a user can complete or error, aborting the
* retry
* @param scheduler
* the {@link Scheduler} on which to subscribe to the source Observable
Expand Down

0 comments on commit 254cac1

Please sign in to comment.