Skip to content

Commit 15fea59

Browse files
PhilGlassakarnokd
authored andcommitted
2.x: Fix Observable.delay & Flowable.delay javadoc (#5617)
1 parent 421f98e commit 15fea59

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/io/reactivex/Flowable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7261,7 +7261,7 @@ public final Flowable<T> delay(long delay, TimeUnit unit) {
72617261

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

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

src/main/java/io/reactivex/Observable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6546,7 +6546,7 @@ public final Observable<T> delay(long delay, TimeUnit unit) {
65466546

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

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

0 commit comments

Comments
 (0)