Skip to content

Commit

Permalink
ReactiveX#5382 Corrected Single.delay documentation
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mithunsasidharan authored Jun 12, 2017
1 parent 8b97eab commit 9e52e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/reactivex/Single.java
Original file line number Diff line number Diff line change
Expand Up @@ -1639,7 +1639,7 @@ public final Single<T> delay(long time, TimeUnit unit) {
* <dd>you specify the {@link Scheduler} where the non-blocking wait and emission happens</dd>
* </dl>
*
* @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
Expand Down

0 comments on commit 9e52e1a

Please sign in to comment.