Merge pull request #42610 from timchenxiaoyu/wheretypo

Automatic merge from submit-queue

fix where typo
This commit is contained in:
Kubernetes Submit Queue 2017-03-24 10:26:10 -07:00 committed by GitHub
commit 7eb02f54cd

View File

@ -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 == ""
}