diff --git a/src/main/java/io/reactivex/Flowable.java b/src/main/java/io/reactivex/Flowable.java index 7e2416b515..a85aa4a25d 100644 --- a/src/main/java/io/reactivex/Flowable.java +++ b/src/main/java/io/reactivex/Flowable.java @@ -7261,7 +7261,7 @@ public final Flowable 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. *

* *

@@ -7318,7 +7318,7 @@ public final Flowable 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. *

* *

diff --git a/src/main/java/io/reactivex/Observable.java b/src/main/java/io/reactivex/Observable.java index 16b48e7182..e378c2c192 100644 --- a/src/main/java/io/reactivex/Observable.java +++ b/src/main/java/io/reactivex/Observable.java @@ -6546,7 +6546,7 @@ public final Observable 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. *

* *

@@ -6597,7 +6597,7 @@ public final Observable 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. *

* *