From 9742c8c5a2684aa26cee37d7217857b07863030c Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Tue, 24 Sep 2019 10:57:35 -0700 Subject: [PATCH] fix(action): typo Signed-off-by: Matthew Fisher --- pkg/action/lint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/action/lint.go b/pkg/action/lint.go index a3ec1563a..c5a77eb4e 100644 --- a/pkg/action/lint.go +++ b/pkg/action/lint.go @@ -111,7 +111,7 @@ func lintChart(path string, vals map[string]interface{}, namespace string, stric chartPath = path } - // Guard: Error out of this is not a chart. + // Guard: Error out if this is not a chart. if _, err := os.Stat(filepath.Join(chartPath, "Chart.yaml")); err != nil { return linter, errLintNoChart }