From 236d6206d7dc694fd39db039d77cbbb9dc6e7917 Mon Sep 17 00:00:00 2001 From: qwazer Date: Mon, 4 Dec 2017 13:31:27 +0300 Subject: [PATCH] Fix typo: maximimum -> maximum. --- .../java/org/springframework/retry/annotation/Backoff.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/retry/annotation/Backoff.java b/src/main/java/org/springframework/retry/annotation/Backoff.java index f93055a..6fef003 100644 --- a/src/main/java/org/springframework/retry/annotation/Backoff.java +++ b/src/main/java/org/springframework/retry/annotation/Backoff.java @@ -65,7 +65,7 @@ public @interface Backoff { long delay() default 0; /** - * The maximimum wait (in milliseconds) between retries. If less than the + * The maximum wait (in milliseconds) between retries. If less than the * {@link #delay()} then ignored. * * @return the maximum delay between retries (default 0 = ignored) @@ -90,7 +90,7 @@ public @interface Backoff { String delayExpression() default ""; /** - * An expression evaluating to the maximimum wait (in milliseconds) between retries. + * An expression evaluating to the maximum wait (in milliseconds) between retries. * If less than the {@link #delay()} then ignored. * Overrides {@link #maxDelay()} *