Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in javadoc comments. #1518

Merged
merged 1 commit into from
Jul 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions rxjava-core/src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
@@ -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
@@ -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>
@@ -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>
@@ -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