Skip to content

Commit 1ac5834

Browse files
davidmotenakarnokd
authored andcommitted
improve timer javadoc (#4693)
1 parent 09c289e commit 1ac5834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3750,7 +3750,7 @@ public static Observable<Long> timer(long initialDelay, long period, TimeUnit un
37503750
}
37513751

37523752
/**
3753-
* Returns an Observable that emits one item after a specified delay, and then completes.
3753+
* Returns an Observable that emits {@code 0L} after a specified delay, and then completes.
37543754
* <p>
37553755
* <img width="640" height="200" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/timer.png" alt="">
37563756
* <dl>
@@ -3773,7 +3773,7 @@ public static Observable<Long> timer(long delay, TimeUnit unit) {
37733773
}
37743774

37753775
/**
3776-
* Returns an Observable that emits one item after a specified delay, on a specified Scheduler, and then
3776+
* Returns an Observable that emits {@code 0L} after a specified delay, on a specified Scheduler, and then
37773777
* completes.
37783778
* <p>
37793779
* <img width="640" height="200" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/timer.s.png" alt="">

0 commit comments

Comments
 (0)