Fix engine.newFiles doc comment

Signed-off-by: Jon Huhn <huhnjon@gmail.com>
pull/7541/head
Jon Huhn 5 years ago
parent 0dce5c1418
commit 43e6285995
No known key found for this signature in database
GPG Key ID: BE663AE8A4B90039

@ -30,7 +30,7 @@ import (
type files map[string][]byte type files map[string][]byte
// NewFiles creates a new files from chart files. // NewFiles creates a new files from chart files.
// Given an []*any.Any (the format for files in a chart.Chart), extract a map of files. // Given an []*chart.File (the format for files in a chart.Chart), extract a map of files.
func newFiles(from []*chart.File) files { func newFiles(from []*chart.File) files {
files := make(map[string][]byte) files := make(map[string][]byte)
for _, f := range from { for _, f := range from {

Loading…
Cancel
Save