From 24dd8a4698315a4aafee5071f4fe4d74fa06c377 Mon Sep 17 00:00:00 2001 From: y00277921 Date: Sat, 11 Apr 2015 10:34:21 +0800 Subject: [PATCH] Fix a typo in comment of parseMaybeJSONToList Signed-off-by: Yu Changchun --- builder/parser/line_parsers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/parser/line_parsers.go b/builder/parser/line_parsers.go index 6e284d6fc3..5f65a8762f 100644 --- a/builder/parser/line_parsers.go +++ b/builder/parser/line_parsers.go @@ -279,7 +279,7 @@ func parseMaybeJSON(rest string) (*Node, map[string]bool, error) { } // parseMaybeJSONToList determines if the argument appears to be a JSON array. If -// so, passes to parseJSON; if not, attmpts to parse it as a whitespace +// so, passes to parseJSON; if not, attempts to parse it as a whitespace // delimited string. func parseMaybeJSONToList(rest string) (*Node, map[string]bool, error) { node, attrs, err := parseJSON(rest)