spelling: recursively

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
pull/7258/head
Josh Soref 6 years ago
parent 2a04d68ae5
commit a4ecdb15e4

@ -39,7 +39,7 @@ func ValidateAgainstSchema(chrt *chart.Chart, values map[string]interface{}) err
} }
} }
// For each dependency, recurively call this function with the coalesced values // For each dependency, recursively call this function with the coalesced values
for _, subchrt := range chrt.Dependencies() { for _, subchrt := range chrt.Dependencies() {
subchrtValues := values[subchrt.Name()].(map[string]interface{}) subchrtValues := values[subchrt.Name()].(map[string]interface{})
if err := ValidateAgainstSchema(subchrt, subchrtValues); err != nil { if err := ValidateAgainstSchema(subchrt, subchrtValues); err != nil {

Loading…
Cancel
Save