From 9e52e1a9af16203802e5bb0d6d1159e4dfc6499d Mon Sep 17 00:00:00 2001 From: Mithun Sasidharan Date: Mon, 12 Jun 2017 16:07:09 +0530 Subject: [PATCH] #5382 Corrected Single.delay documentation Corrected Single.delay documentation that says that success or error signals will be delayed by the specified amount, but in fact errors are not delayed, only successes. --- src/main/java/io/reactivex/Single.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/reactivex/Single.java b/src/main/java/io/reactivex/Single.java index 16be31fd35..8b6e665e9b 100644 --- a/src/main/java/io/reactivex/Single.java +++ b/src/main/java/io/reactivex/Single.java @@ -1639,7 +1639,7 @@ public final Single delay(long time, TimeUnit unit) { *
you specify the {@link Scheduler} where the non-blocking wait and emission happens
* * - * @param time the time amount to delay the signals + * @param time the time amount to delay the emission of the success signal * @param unit the time unit * @param scheduler the target scheduler to use fro the non-blocking wait and emission * @return the new Single instance