From d8d2a4e84c892ab476d3f5fc4d0b5a10487237b7 Mon Sep 17 00:00:00 2001 From: Tim Wilfong Date: Thu, 24 May 2018 16:21:01 -0700 Subject: [PATCH] fix space-vs-tab indent on comment line --- pkg/cloudprovider/providers/aws/tags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudprovider/providers/aws/tags.go b/pkg/cloudprovider/providers/aws/tags.go index 2a293e7271f..2daff4d4e4c 100644 --- a/pkg/cloudprovider/providers/aws/tags.go +++ b/pkg/cloudprovider/providers/aws/tags.go @@ -137,7 +137,7 @@ func (t *awsTagging) hasClusterTag(tags []*ec2.Tag) bool { clusterTagKey := t.clusterTagKey() for _, tag := range tags { tagKey := aws.StringValue(tag.Key) - // Check if this is a newer-style cluster tag before checking if legacy tag value matches ClusterID + // Check if this is a newer-style cluster tag before checking if legacy tag value matches ClusterID if tagKey == clusterTagKey { return true }