From b895bbc5c979835963726f6db80db7b5894b2da1 Mon Sep 17 00:00:00 2001 From: Amir Szekely Date: Mon, 7 Mar 2022 15:27:24 -0800 Subject: [PATCH] Fix word repetition in comment (#4304) --- aws/request/retryer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/request/retryer.go b/aws/request/retryer.go index 752ae47f845..3f0001f9181 100644 --- a/aws/request/retryer.go +++ b/aws/request/retryer.go @@ -15,8 +15,8 @@ import ( // and determine if a request API error should be retried. // // client.DefaultRetryer is the SDK's default implementation of the Retryer. It -// uses the which uses the Request.IsErrorRetryable and Request.IsErrorThrottle -// methods to determine if the request is retried. +// uses the Request.IsErrorRetryable and Request.IsErrorThrottle methods to +// determine if the request is retried. type Retryer interface { // RetryRules return the retry delay that should be used by the SDK before // making another request attempt for the failed request.