Rename variable, constants and struct fields following stylecheck linter recommendation

This commit is contained in:
Arthur Mello
2019-12-05 22:39:29 -03:00
parent f2c7066088
commit e811da14d8
14 changed files with 25 additions and 25 deletions

View File

@@ -285,8 +285,8 @@ func compareNodes(i, j *yaml.RNode) bool {
}
// compare apiVersion
if metai.ApiVersion != metaj.ApiVersion {
return metai.ApiVersion < metaj.ApiVersion
if metai.APIVersion != metaj.APIVersion {
return metai.APIVersion < metaj.APIVersion
}
return true
}