From 1dd32cb844159fb1a2b38e23c081e9f05ec4dd1c Mon Sep 17 00:00:00 2001 From: Arash Deshmeh Date: Sat, 24 Mar 2018 06:37:42 -0400 Subject: [PATCH] fix(helm): fix golint warning due to ParseString comment Signed-off-by: Arash Deshmeh --- pkg/strvals/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/strvals/parser.go b/pkg/strvals/parser.go index 8a999feb7..8a16adf7e 100644 --- a/pkg/strvals/parser.go +++ b/pkg/strvals/parser.go @@ -50,7 +50,7 @@ func Parse(s string) (map[string]interface{}, error) { return vals, err } -// Parse parses a set line and forces a string value. +// ParseString parses a set line and forces a string value. // // A set line is of the form name1=value1,name2=value2 func ParseString(s string) (map[string]interface{}, error) {