From 61f2202c6bc639279c10beb7396c500c30bca902 Mon Sep 17 00:00:00 2001 From: timchenxiaoyu <837829664@qq.com> Date: Tue, 7 Mar 2017 09:37:41 +0800 Subject: [PATCH] fix where typo --- pkg/cloudprovider/providers/aws/aws.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudprovider/providers/aws/aws.go b/pkg/cloudprovider/providers/aws/aws.go index 21e074be7bc..011c5429892 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 == "" }