From f8506aaf7d0cb273b6f8e3d6d907521889d995e9 Mon Sep 17 00:00:00 2001 From: "alberto.ballano" Date: Fri, 4 Nov 2016 22:11:10 +0100 Subject: [PATCH] Subtle change in Completable's documentation for retryWhen. --- src/main/java/io/reactivex/Completable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/reactivex/Completable.java b/src/main/java/io/reactivex/Completable.java index a31dc39947..ad832cfb89 100644 --- a/src/main/java/io/reactivex/Completable.java +++ b/src/main/java/io/reactivex/Completable.java @@ -1398,7 +1398,7 @@ public final Completable retry(Predicate predicate) { /** * Returns a Completable which given a Publisher and when this Completable emits an error, delivers - * that error through a Flowable and the Publisher should return a value indicating a retry in response + * that error through a Flowable and the Publisher should signal a value indicating a retry in response * or a terminal event indicating a termination. *
*
Scheduler: