diff --git a/pkg/cloudprovider/providers/aws/aws.go b/pkg/cloudprovider/providers/aws/aws.go index 8d52f0c906b..bc6890f3572 100644 --- a/pkg/cloudprovider/providers/aws/aws.go +++ b/pkg/cloudprovider/providers/aws/aws.go @@ -531,7 +531,7 @@ func stringPointerArray(orig []string) []*string { } // isNilOrEmpty returns true if the value is nil or "" -// Deprecated: prefer aws.StringValue(x) == "" (and elimination of this check altogether whrere possible) +// Deprecated: prefer aws.StringValue(x) == "" (and elimination of this check altogether where possible) func isNilOrEmpty(s *string) bool { return s == nil || *s == "" }