From db76ba2b792f14ab2a18fb5d226d5ebb2f55a4cb Mon Sep 17 00:00:00 2001 From: Sean O'Neil Date: Fri, 25 Jul 2014 16:23:19 -0400 Subject: [PATCH] Fix typos in javadoc comments. --- rxjava-core/src/main/java/rx/Observable.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rxjava-core/src/main/java/rx/Observable.java b/rxjava-core/src/main/java/rx/Observable.java index 3fa6617cd5..327499d0da 100644 --- a/rxjava-core/src/main/java/rx/Observable.java +++ b/rxjava-core/src/main/java/rx/Observable.java @@ -6053,7 +6053,7 @@ public final Observable repeat(final long count, Scheduler scheduler) { * * * @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 repeatWhen(Func1 * * @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 RxJava Wiki: repeatWhen() * @see MSDN: Observable.Repeat @@ -6757,7 +6757,7 @@ public final Observable retry(Func2 predicate) { * * * @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 RxJava Wiki: retryWhen() @@ -6781,7 +6781,7 @@ public final Observable retryWhen(Func1 * * @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