Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kvalliyurnatt committed Dec 11, 2023
1 parent 3778ff9 commit 80523cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/utils/maps/maps.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ func IsSubset(toCheck, fullSet map[string]string) bool {
}

// ManagedKeysChanged compares the values of the given keys managed by the elasticsearch operator between two maps and returns true if they are not equal.
func ManagedKeysChanged(toCheck, fullset map[string]string, managedkeysToCompare []string) bool {
func ManagedKeysChanged(toCheck, fullSet map[string]string, managedkeysToCompare []string) bool {
for _, key := range managedkeysToCompare {
if toCheck[key] != fullset[key] {
if toCheck[key] != fullSet[key] {
return true
}
}
Expand Down

0 comments on commit 80523cc

Please sign in to comment.