From f7e09fbe15942bd0bcff35620a0c099109e5fdd0 Mon Sep 17 00:00:00 2001 From: eliot-stripe <58606410+eliot-stripe@users.noreply.github.com> Date: Mon, 4 Oct 2021 17:23:02 -0700 Subject: [PATCH] Fix a typo in the Retryer docs (#1441) Retryer was spelled as Retyer. This PR fixes that typo. --- aws/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/config.go b/aws/config.go index 8b3a8512faf..dfd2532a7ce 100644 --- a/aws/config.go +++ b/aws/config.go @@ -46,7 +46,7 @@ type Config struct { // retried in case of recoverable failures. When nil the API client will use a default // retryer. // - // In general, the provider function should return a new instance of a Retyer if you are attempting + // In general, the provider function should return a new instance of a Retryer if you are attempting // to provide a consistent Retryer configuration across all clients. This will ensure that each client will be // provided a new instance of the Retryer implementation, and will avoid issues such as sharing the same retry token // bucket across services.