From 7b936b6d657b3ae5256fd5ee9bd11da09ac606c4 Mon Sep 17 00:00:00 2001 From: go-to-k <24818752+go-to-k@users.noreply.github.com> Date: Sun, 11 Jun 2023 01:57:02 +0900 Subject: [PATCH] chore: typo in Retryer interface --- aws/retryer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/retryer.go b/aws/retryer.go index 6777e21ef09..b0ba4cb2f08 100644 --- a/aws/retryer.go +++ b/aws/retryer.go @@ -54,7 +54,7 @@ type Retryer interface { MaxAttempts() int // RetryDelay returns the delay that should be used before retrying the - // attempt. Will return error if the if the delay could not be determined. + // attempt. Will return error if the delay could not be determined. RetryDelay(attempt int, opErr error) (time.Duration, error) // GetRetryToken attempts to deduct the retry cost from the retry token pool.