From d0d653dcbabbd27475c066401d2e8ee133207ef9 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 24 Feb 2021 10:42:38 -0500 Subject: [PATCH] spelling: depending Signed-off-by: Josh Soref --- pkg/lint/rules/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lint/rules/template.go b/pkg/lint/rules/template.go index 10121c108..23f6accd1 100644 --- a/pkg/lint/rules/template.go +++ b/pkg/lint/rules/template.go @@ -152,7 +152,7 @@ func Templates(linter *support.Linter, values map[string]interface{}, namespace // validateTopIndentLevel checks that the content does not start with an indent level > 0. // // This error can occur when a template accidentally inserts space. It can cause -// unpredictable errors dependening on whether the text is normalized before being passed +// unpredictable errors depending on whether the text is normalized before being passed // into the YAML parser. So we trap it here. // // See https://github.com/helm/helm/issues/8467