Skip to content

Commit d42d3f1

Browse files
committed
Fix wording in Javadoc for RetryTemplate
See gh-34716
1 parent 51b6e8c commit d42d3f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-core/src/main/java/org/springframework/core/retry/RetryTemplate.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
* retries a {@link Retryable} operation based on a configured {@link RetryPolicy}
3636
* and {@link BackOff} policy.
3737
*
38-
* <p>By default, a retryable operation will be invoked at most 3 times with a
38+
* <p>By default, a retryable operation will be retried at most 3 times with a
3939
* fixed backoff of 1 second.
4040
*
4141
* <p>A {@link RetryListener} can be {@linkplain #setRetryListener(RetryListener)
4242
* registered} to intercept and inject behavior during key retry phases (before a
4343
* retry attempt, after a retry attempt, etc.).
4444
*
45-
* <p>All retry operations performed by this class are logged at debug level,
46-
* using {@code "org.springframework.core.retry.RetryTemplate"} as the log category.
45+
* <p>All retry actions performed by this template are logged at debug level, using
46+
* {@code "org.springframework.core.retry.RetryTemplate"} as the log category.
4747
*
4848
* @author Mahmoud Ben Hassine
4949
* @author Sam Brannen

0 commit comments

Comments
 (0)