From d42d3f1a6c8979029893ceeec751f048085d94c5 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Tue, 10 Jun 2025 18:34:56 +0200 Subject: [PATCH] Fix wording in Javadoc for RetryTemplate See gh-34716 --- .../java/org/springframework/core/retry/RetryTemplate.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java b/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java index 9506266db3..546fe8ad2e 100644 --- a/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java +++ b/spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java @@ -35,15 +35,15 @@ import org.springframework.util.backoff.FixedBackOff; * retries a {@link Retryable} operation based on a configured {@link RetryPolicy} * and {@link BackOff} policy. * - *

By default, a retryable operation will be invoked at most 3 times with a + *

By default, a retryable operation will be retried at most 3 times with a * fixed backoff of 1 second. * *

A {@link RetryListener} can be {@linkplain #setRetryListener(RetryListener) * registered} to intercept and inject behavior during key retry phases (before a * retry attempt, after a retry attempt, etc.). * - *

All retry operations performed by this class are logged at debug level, - * using {@code "org.springframework.core.retry.RetryTemplate"} as the log category. + *

All retry actions performed by this template are logged at debug level, using + * {@code "org.springframework.core.retry.RetryTemplate"} as the log category. * * @author Mahmoud Ben Hassine * @author Sam Brannen