Fix some Go nits.

This commit is contained in:
Jeffrey Regan
2018-08-23 09:59:37 -07:00
parent 67d2c2ed4a
commit 735a93d000
5 changed files with 11 additions and 11 deletions

View File

@@ -272,7 +272,7 @@ func MergeWithOverride(maps ...ResMap) (ResMap, error) {
result[id] = r
}
} else {
return nil, fmt.Errorf("Merge conflict, found multiple objects %v the Resmap %v can merge into", matchedId, id)
return nil, fmt.Errorf("merge conflict, found multiple objects %v the Resmap %v can merge into", matchedId, id)
}
}
}