From 40a800b6768bfb08ea9fce4d0e0786b24404f33d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B8=82=E5=B7=9D=E6=81=AD=E4=BD=91=20=28ebi=29?= <44393661+ebi-yade@users.noreply.github.com> Date: Tue, 17 May 2022 04:59:30 +0900 Subject: [PATCH] aws/retry: Fixup documentation typos(#1698) * Modify the outline of aws/retry/doc.go * Correct obvious typological errors in aws/retry/doc.go --- aws/retry/doc.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/aws/retry/doc.go b/aws/retry/doc.go index 42ced06e248..1d019ca61bf 100644 --- a/aws/retry/doc.go +++ b/aws/retry/doc.go @@ -2,9 +2,9 @@ // // Retryer Interface and Implementations // -// This packages defines Retryer interface that is used to either implement custom retry behavior -// or to extend the existing retry implementations provided by the SDK. This packages provides a single -// retry implementations: Standard. +// This package defines Retryer interface that is used to either implement custom retry behavior +// or to extend the existing retry implementations provided by the SDK. This package provides a single +// retry implementation: Standard. // // Standard // @@ -33,7 +33,7 @@ // value. // // You can configure the standard retryer implementation to fit your applications by constructing a standard retryer -// using the NewStandard function, and providing one more functional arguments that mutate the StandardOptions +// using the NewStandard function, and providing one more functional argument that mutate the StandardOptions // structure. StandardOptions provides the ability to modify the token bucket rate limiter, retryable error conditions, // and the retry delay policy. // @@ -71,7 +71,7 @@ // standard retryer. // // IsErrorRetryableFunc - Can be used to wrap a function to satisfy the IsErrorRetryable interface. For example, -// this can be used to extend the standard retryer to add additional logic ot determine if a +// this can be used to extend the standard retryer to add additional logic to determine if an // error should be retried. // // IsErrorTimeoutFunc - Can be used to wrap a function to satisfy IsErrorTimeout interface. For example,