From 4790bb463158fa6535859e1269b4de2a8a7d39c2 Mon Sep 17 00:00:00 2001 From: Scott Rigby Date: Thu, 6 Jul 2017 15:23:53 -0400 Subject: [PATCH] Simplify comment --- pkg/chartutil/values.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/values.go b/pkg/chartutil/values.go index b66a2557b..bceccc61b 100644 --- a/pkg/chartutil/values.go +++ b/pkg/chartutil/values.go @@ -278,7 +278,7 @@ func coalesceValues(c *chart.Chart, v map[string]interface{}) (map[string]interf } for key, val := range nv { - // If the value is YAML null, remove the value's key. + // When the YAML value is null, we remove the value's key. // This allows Helm's various sources of values (value files or --set) to // remove incompatible keys from any previous chart, file, or set values. // ref: http://www.yaml.org/spec/1.2/spec.html#id2803362