Fix small typo in error string in state.go (#345)

This commit is contained in:
Terry Corley 2018-09-17 06:27:39 -05:00 committed by KUOKA Yusuke
parent cf31d02f25
commit 6453768f2e
1 changed files with 1 additions and 1 deletions

View File

@ -952,7 +952,7 @@ func (state *HelmState) namespaceAndValuesFlags(helm helmexec.Interface, release
yamlBytes, err := state.RenderValuesFileToBytes(path)
if err != nil {
return nil, fmt.Errorf("faield to render values files \"%s\": %v", typedValue, err)
return nil, fmt.Errorf("failed to render values files \"%s\": %v", typedValue, err)
}
valfile, err := ioutil.TempFile("", "values")