Skip to content

Commit 8f985ef

Browse files
committed
Fix javadoc typos
1 parent dabb230 commit 8f985ef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/java/org/springframework/retry/annotation/Retryable.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
String interceptor() default "";
5555

5656
/**
57-
* Exception types that are retryable. Defaults to empty (and if excludes is also
58-
* empty all exceptions are retried).
57+
* Exception types that are retryable. Defaults to empty (and if exclude is also empty
58+
* all exceptions are retried).
5959
* @return exception types to retry
6060
* @deprecated in favor of {@link #retryFor()}
6161
*/
@@ -83,8 +83,8 @@
8383

8484
/**
8585
* Exception types that are not retryable. Defaults to empty (and if include is also
86-
* empty all exceptions are retried). If includes is empty but excludes is not, all
87-
* not excluded exceptions are retried
86+
* empty all exceptions are retried). If includes is empty but exclude is not, all not
87+
* excluded exceptions are retried
8888
* @return exception types not to retry
8989
* @deprecated in favor of {@link #noRetryFor()}.
9090
*/
@@ -94,7 +94,7 @@
9494

9595
/**
9696
* Exception types that are not retryable. Defaults to empty (and, if retryFor is also
97-
* empty, all exceptions are retried). If retryFor is empty but excludes is not, all
97+
* empty, all exceptions are retried). If retryFor is empty but noRetryFor is not, all
9898
* other exceptions are retried
9999
* @return exception types not to retry
100100
* @since 2.0

0 commit comments

Comments
 (0)