Skip to content

Commit f8be5c1

Browse files
committed
Merge pull request ReactiveX#3791 from neoranga55/patch-2
1.x: Fix Observable delay methods typos in documenation
2 parents 875e232 + b93ef68 commit f8be5c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4434,7 +4434,7 @@ public final <U> Observable<T> delay(Func1<? super T, ? extends Observable<U>> i
44344434
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
44354435
* <dl>
44364436
* <dt><b>Scheduler:</b></dt>
4437-
* <dd>This version of {@code delay} operates by default on the {@code compuation} {@link Scheduler}.</dd>
4437+
* <dd>This version of {@code delay} operates by default on the {@code computation} {@link Scheduler}.</dd>
44384438
* </dl>
44394439
*
44404440
* @param delay
@@ -4477,7 +4477,7 @@ public final Observable<T> delay(long delay, TimeUnit unit, Scheduler scheduler)
44774477
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delaySubscription.png" alt="">
44784478
* <dl>
44794479
* <dt><b>Scheduler:</b></dt>
4480-
* <dd>This version of {@code delay} operates by default on the {@code compuation} {@link Scheduler}.</dd>
4480+
* <dd>This version of {@code delay} operates by default on the {@code computation} {@link Scheduler}.</dd>
44814481
* </dl>
44824482
*
44834483
* @param delay

src/main/java/rx/Single.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2362,7 +2362,7 @@ public final Single<T> delay(long delay, TimeUnit unit, Scheduler scheduler) {
23622362
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
23632363
* <dl>
23642364
* <dt><b>Scheduler:</b></dt>
2365-
* <dd>This version of {@code delay} operates by default on the {@code compuation} {@link Scheduler}.</dd>
2365+
* <dd>This version of {@code delay} operates by default on the {@code computation} {@link Scheduler}.</dd>
23662366
* </dl>
23672367
*
23682368
* @param delay

0 commit comments

Comments
 (0)