@@ -236,8 +236,8 @@ public RetryPolicyBuilder<R> onRetryScheduled(EventListener<ExecutionScheduledEv
236236
237237 /**
238238 * Sets the {@code delay} between retries, exponentially backing off to the {@code maxDelay} and multiplying
239- * successive delays by a factor of 2. Replaces any previously configured {@link #withDelay(Duration) fixed} or {@link
240- * #withDelay(Duration, Duration) random} delays.
239+ * consecutive delays by a factor of 2. Replaces any previously configured {@link #withDelay(Duration) fixed} or
240+ * {@link #withDelay(Duration, Duration) random} delays.
241241 *
242242 * @throws NullPointerException if {@code delay} or {@code maxDelay} are null
243243 * @throws IllegalArgumentException if {@code delay} is <= 0 or {@code delay} is >= {@code maxDelay}
@@ -250,8 +250,8 @@ public RetryPolicyBuilder<R> withBackoff(Duration delay, Duration maxDelay) {
250250
251251 /**
252252 * Sets the {@code delay} between retries, exponentially backing off to the {@code maxDelay} and multiplying
253- * successive delays by a factor of 2. Replaces any previously configured {@link #withDelay(Duration) fixed} or {@link
254- * #withDelay(Duration, Duration) random} delays.
253+ * consecutive delays by a factor of 2. Replaces any previously configured {@link #withDelay(Duration) fixed} or
254+ * {@link #withDelay(Duration, Duration) random} delays.
255255 *
256256 * @throws NullPointerException if {@code chronoUnit} is null
257257 * @throws IllegalArgumentException if {@code delay} is <= 0 or {@code delay} is >= {@code maxDelay}
@@ -264,8 +264,8 @@ public RetryPolicyBuilder<R> withBackoff(long delay, long maxDelay, ChronoUnit c
264264
265265 /**
266266 * Sets the {@code delay} between retries, exponentially backing off to the {@code maxDelay} and multiplying
267- * successive delays by the {@code delayFactor}. Replaces any previously configured {@link #withDelay(Duration) fixed}
268- * or {@link #withDelay(Duration, Duration) random} delays.
267+ * consecutive delays by the {@code delayFactor}. Replaces any previously configured {@link #withDelay(Duration)
268+ * fixed} or {@link #withDelay(Duration, Duration) random} delays.
269269 *
270270 * @throws NullPointerException if {@code chronoUnit} is null
271271 * @throws IllegalArgumentException if {@code delay} <= 0, {@code delay} is >= {@code maxDelay}, or the {@code
@@ -279,8 +279,8 @@ public RetryPolicyBuilder<R> withBackoff(long delay, long maxDelay, ChronoUnit c
279279
280280 /**
281281 * Sets the {@code delay} between retries, exponentially backing off to the {@code maxDelay} and multiplying
282- * successive delays by the {@code delayFactor}. Replaces any previously configured {@link #withDelay(Duration) fixed}
283- * or {@link #withDelay(Duration, Duration) random} delays.
282+ * consecutive delays by the {@code delayFactor}. Replaces any previously configured {@link #withDelay(Duration)
283+ * fixed} or {@link #withDelay(Duration, Duration) random} delays.
284284 *
285285 * @throws NullPointerException if {@code delay} or {@code maxDelay} are null
286286 * @throws IllegalArgumentException if {@code delay} <= 0, {@code delay} is >= {@code maxDelay}, or the {@code
0 commit comments