From 2c115157c8ea849041ae987780934393f7a8a6e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Basl=C3=A9?= Date: Mon, 16 Mar 2020 17:00:54 +0100 Subject: [PATCH] fix typos in javadoc --- .../src/main/java/reactor/util/retry/RetryBackoffSpec.java | 2 +- reactor-core/src/main/java/reactor/util/retry/RetrySpec.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reactor-core/src/main/java/reactor/util/retry/RetryBackoffSpec.java b/reactor-core/src/main/java/reactor/util/retry/RetryBackoffSpec.java index 075553d074..fe061f8aeb 100644 --- a/reactor-core/src/main/java/reactor/util/retry/RetryBackoffSpec.java +++ b/reactor-core/src/main/java/reactor/util/retry/RetryBackoffSpec.java @@ -332,7 +332,7 @@ public RetryBackoffSpec doAfterRetryAsync( /** * Set the generator for the {@link Exception} to be propagated when the maximum amount of retries * is exhausted. By default, throws an {@link Exceptions#retryExhausted(String, Throwable)} with the - * message reflecting the total attempt index, transien attempt index and maximum retry count. + * message reflecting the total attempt index, transient attempt index and maximum retry count. * The cause of the last {@link RetrySignal} is also added as the exception's cause. * * diff --git a/reactor-core/src/main/java/reactor/util/retry/RetrySpec.java b/reactor-core/src/main/java/reactor/util/retry/RetrySpec.java index 0f0994d216..1b0f868a7c 100644 --- a/reactor-core/src/main/java/reactor/util/retry/RetrySpec.java +++ b/reactor-core/src/main/java/reactor/util/retry/RetrySpec.java @@ -271,7 +271,7 @@ public RetrySpec doAfterRetryAsync( /** * Set the generator for the {@link Exception} to be propagated when the maximum amount of retries * is exhausted. By default, throws an {@link Exceptions#retryExhausted(String, Throwable)} with the - * message reflecting the total attempt index, transien attempt index and maximum retry count. + * message reflecting the total attempt index, transient attempt index and maximum retry count. * The cause of the last {@link RetrySignal} is also added as the exception's cause. * * @param retryExhaustedGenerator the {@link Function} that generates the {@link Throwable} for the last