Forráskód Böngészése

Fix a typo in comment of parseMaybeJSONToList

Signed-off-by: Yu Changchun <yuchangchun1@huawei.com>
y00277921 10 éve
szülő
commit
24dd8a4698
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      builder/parser/line_parsers.go

+ 1 - 1
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)