From 55af3b89e9088727b8c1fb9f2726143af36302e9 Mon Sep 17 00:00:00 2001 From: Piyal Ahmed Date: Sun, 8 Sep 2024 14:24:58 +0600 Subject: [PATCH] fix typo: attempts --- .../main/java/io/micronaut/retry/intercept/SimpleRetry.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/retry/src/main/java/io/micronaut/retry/intercept/SimpleRetry.java b/retry/src/main/java/io/micronaut/retry/intercept/SimpleRetry.java index c4c43859f71..c4f06fe796e 100644 --- a/retry/src/main/java/io/micronaut/retry/intercept/SimpleRetry.java +++ b/retry/src/main/java/io/micronaut/retry/intercept/SimpleRetry.java @@ -46,7 +46,7 @@ class SimpleRetry implements RetryState, MutableRetryState { private final Class capturedException; /** - * @param maxAttempts The maximum number of attemps + * @param maxAttempts The maximum number of attempts * @param multiplier The multiplier to use between delays * @param delay The overall delay so far * @param maxDelay The maximum overall delay @@ -70,7 +70,7 @@ class SimpleRetry implements RetryState, MutableRetryState { } /** - * @param maxAttempts The maximum number of attemps + * @param maxAttempts The maximum number of attempts * @param multiplier The multiplier to use between delays * @param delay The overall delay so far * @param maxDelay The maximum overall delay @@ -81,7 +81,7 @@ class SimpleRetry implements RetryState, MutableRetryState { } /** - * @param maxAttempts The maximum number of attemps + * @param maxAttempts The maximum number of attempts * @param multiplier The multiplier to use between delays * @param delay The overall delay so far */