From 43e628599564bafd5b16514fae799eab9fbc5ffd Mon Sep 17 00:00:00 2001 From: Jon Huhn Date: Thu, 6 Feb 2020 10:45:15 -0600 Subject: [PATCH] Fix engine.newFiles doc comment Signed-off-by: Jon Huhn --- pkg/engine/files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/engine/files.go b/pkg/engine/files.go index 3a6659d11..d7e62da5a 100644 --- a/pkg/engine/files.go +++ b/pkg/engine/files.go @@ -30,7 +30,7 @@ import ( type files map[string][]byte // 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 { files := make(map[string][]byte) for _, f := range from {