From 40e94647191d43d70cf732728742d62c38aac0a9 Mon Sep 17 00:00:00 2001 From: Alberto Ballano Date: Fri, 4 Nov 2016 21:46:28 +0000 Subject: [PATCH] Subtle change in Completable's documentation for retryWhen. (#4810) --- 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: