@@ -64,9 +64,9 @@ default void onRetryFailure(RetryPolicy retryPolicy, Retryable<?> retryable, Thr
6464 /**
6565 * Called if the {@link RetryPolicy} is exhausted.
6666 * @param retryPolicy the {@code RetryPolicy}
67- * @param retryable the {@code Retryable} operation
67+ * @param retryable the {@link Retryable} operation
6868 * @param exception the resulting {@link RetryException}, with the last
69- * exception thrown by the {@link Retryable} operation as the cause and any
69+ * exception thrown by the {@code Retryable} operation as the cause and any
7070 * exceptions from previous attempts as suppressed exceptions
7171 * @see RetryException#getCause()
7272 * @see RetryException#getSuppressed()
@@ -76,13 +76,12 @@ default void onRetryPolicyExhaustion(RetryPolicy retryPolicy, Retryable<?> retry
7676 }
7777
7878 /**
79- * Called if an {@link InterruptedException} is encountered while
80- * {@linkplain Thread#sleep(long) sleeping} between retry attempts.
79+ * Called if the {@link RetryPolicy} is interrupted between retry attempts.
8180 * @param retryPolicy the {@code RetryPolicy}
82- * @param retryable the {@code Retryable} operation
83- * @param exception the resulting {@link RetryException}, with the
84- * {@code InterruptedException} as the cause and any exceptions from previous
85- * retry attempts as suppressed exceptions
81+ * @param retryable the {@link Retryable} operation
82+ * @param exception the resulting {@link RetryException}, with an
83+ * {@link InterruptedException} as the cause and any exceptions from previous
84+ * invocations of the {@code Retryable} operation as suppressed exceptions
8685 * @see RetryException#getCause()
8786 * @see RetryException#getSuppressed()
8887 * @see RetryException#getRetryCount()
0 commit comments