From 6e3856d2ec3b7dadce1922d92654b688dc2d5d9c Mon Sep 17 00:00:00 2001 From: Yoshihiro Ito Date: Sat, 2 Jul 2022 06:45:49 +0900 Subject: [PATCH] aws/retry: fix typo in comment at Attempt.HandleFinalize (#1753) Fixes typo in Attempt.HandleFinalize docstring. --- aws/retry/middleware.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/retry/middleware.go b/aws/retry/middleware.go index 926f5f5e1e0..3326289a151 100644 --- a/aws/retry/middleware.go +++ b/aws/retry/middleware.go @@ -90,7 +90,7 @@ func (r *Attempt) HandleFinalize(ctx context.Context, in smithymiddle.FinalizeIn out, attemptResult, releaseRetryToken, err = r.handleAttempt(attemptCtx, attemptInput, releaseRetryToken, next) attemptClockSkew, _ = awsmiddle.GetAttemptSkew(attemptResult.ResponseMetadata) - // AttempResult Retried states that the attempt was not successful, and + // AttemptResult Retried states that the attempt was not successful, and // should be retried. shouldRetry := attemptResult.Retried