From e91befa5bb5233c0107587a97a5be7f56cbde3e3 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sun, 9 Nov 2025 15:24:17 +0100 Subject: [PATCH] Polishing --- .../resilience/annotation/Retryable.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/spring-context/src/main/java/org/springframework/resilience/annotation/Retryable.java b/spring-context/src/main/java/org/springframework/resilience/annotation/Retryable.java index 8c174538de1..91eb8cdd232 100644 --- a/spring-context/src/main/java/org/springframework/resilience/annotation/Retryable.java +++ b/spring-context/src/main/java/org/springframework/resilience/annotation/Retryable.java @@ -113,7 +113,7 @@ public @interface Retryable { /** * The maximum number of retry attempts, as a configurable String. - * A non-empty value specified here overrides the {@link #maxAttempts()} attribute. + *

A non-empty value specified here overrides the {@link #maxRetries()} attribute. *

This supports Spring-style "${...}" placeholders as well as SpEL expressions. * @see #maxAttempts() */ @@ -133,7 +133,7 @@ public @interface Retryable { /** * The base delay after the initial invocation, as a duration String. - * A non-empty value specified here overrides the {@link #delay()} attribute. + *

A non-empty value specified here overrides the {@link #delay()} attribute. *

The duration String can be in several formats: *