fix space-vs-tab indent on comment line

This commit is contained in:
Tim Wilfong
2018-05-24 16:21:01 -07:00
committed by GitHub
parent 0a95581de0
commit d8d2a4e84c

View File

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