浏览代码

Merge pull request #12290 from yuchangchun1/typo

Fix a typo in TestVolumesFromGetsProperMode
Brian Goff 10 年之前
父节点
当前提交
e3c1cc8d77
共有 1 个文件被更改,包括 1 次插入1 次删除
  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)