From 2b79dbc89bf15c276145a0fa3d3728308349f86e Mon Sep 17 00:00:00 2001 From: fate-grand-order Date: Mon, 20 Mar 2017 19:52:00 +0800 Subject: [PATCH] fix misspell in utils.go Signed-off-by: Helen Xie --- builder/dockerfile/parser/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/dockerfile/parser/utils.go b/builder/dockerfile/parser/utils.go index cbb97d4483..1f77f057ce 100644 --- a/builder/dockerfile/parser/utils.go +++ b/builder/dockerfile/parser/utils.go @@ -116,7 +116,7 @@ func extractBuilderFlags(line string) (string, []string, error) { return line[pos:], words, nil } - phase = inWord // found someting with "--", fall through + phase = inWord // found something with "--", fall through } if (phase == inWord || phase == inQuote) && (pos == len(line)) { if word != "--" && (blankOK || len(word) > 0) {