From c1920ce9c3619d6b9a7fbad54e63e22467e09175 Mon Sep 17 00:00:00 2001 From: Matt White <16320656+matt-FFFFFF@users.noreply.github.com> Date: Tue, 2 Jan 2024 14:32:52 +0000 Subject: [PATCH] docs: spelling --- internal/clients/resource_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/clients/resource_client.go b/internal/clients/resource_client.go index 1b8bec9ac..29759ac59 100644 --- a/internal/clients/resource_client.go +++ b/internal/clients/resource_client.go @@ -64,7 +64,7 @@ func (client *ResourceClient) WithRetry(retry *ResourceClientRetryableErrors) *R } // CreateOrUpdateWithRetry configures the retryable errors for the client. -// It calls CreateOrUpdate, the checks if the error is contained in the retryable errors list. +// It calls CreateOrUpdate, then checks if the error is contained in the retryable errors list. // If it is, it will retry the operation with the configured backoff. // If it is not, it will return the error as a backoff.PermanentError{}. func (client *ResourceClient) CreateOrUpdateWithRetry(ctx context.Context, resourceID string, apiVersion string, body interface{}) (interface{}, error) {