Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion override/merge.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func mergeYaml(e any, o any, p tree.Path) (any, error) {
case []any:
other, ok := o.([]any)
if !ok {
return nil, fmt.Errorf("cannont override %s", p)
return nil, fmt.Errorf("cannot override %s", p)
}
return append(value, other...), nil
default:
Expand Down