Skip to content

Commit

Permalink
2.x: Fix Observable.delay & Flowable.delay javadoc (#5617)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilGlass authored and akarnokd committed Sep 24, 2017
1 parent 421f98e commit 15fea59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Flowable.java
Original file line number Diff line number Diff line change
Expand Up @@ -7261,7 +7261,7 @@ public final Flowable<T> delay(long delay, TimeUnit unit) {

/**
* Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
* specified delay. Error notifications from the source Publisher are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
* <dl>
Expand Down Expand Up @@ -7318,7 +7318,7 @@ public final Flowable<T> delay(long delay, TimeUnit unit, Scheduler scheduler) {

/**
* Returns a Flowable that emits the items emitted by the source Publisher shifted forward in time by a
* specified delay. Error notifications from the source Publisher are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.s.png" alt="">
* <dl>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -6546,7 +6546,7 @@ public final Observable<T> delay(long delay, TimeUnit unit) {

/**
* Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
* specified delay. Error notifications from the source ObservableSource are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.png" alt="">
* <dl>
Expand Down Expand Up @@ -6597,7 +6597,7 @@ public final Observable<T> delay(long delay, TimeUnit unit, Scheduler scheduler)

/**
* Returns an Observable that emits the items emitted by the source ObservableSource shifted forward in time by a
* specified delay. Error notifications from the source ObservableSource are not delayed.
* specified delay. If {@code delayError} is true, error notifications will also be delayed.
* <p>
* <img width="640" height="310" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/delay.s.png" alt="">
* <dl>
Expand Down

0 comments on commit 15fea59

Please sign in to comment.