From 394bb94714f13ad8fff8eb1aa3ba38edd398d965 Mon Sep 17 00:00:00 2001 From: Tiffany Jernigan Date: Thu, 9 Jun 2016 14:47:05 -0700 Subject: [PATCH] Fixed spelling error in builder/dockerfile/parser/parser.go Signed-off-by: Tiffany Jernigan Upstream-commit: a07c57f656846ee0de67ac4f575fe5b76d482efb Component: engine --- components/engine/builder/dockerfile/parser/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/builder/dockerfile/parser/parser.go b/components/engine/builder/dockerfile/parser/parser.go index 5a61a9d408..eefbf0cf39 100644 --- a/components/engine/builder/dockerfile/parser/parser.go +++ b/components/engine/builder/dockerfile/parser/parser.go @@ -91,7 +91,7 @@ func init() { // ParseLine parse a line and return the remainder. func ParseLine(line string) (string, *Node, error) { - // Handle the parser directive '# escape=. Parser directives must preceed + // Handle the parser directive '# escape=. Parser directives must precede // any builder instruction or other comments, and cannot be repeated. if lookingForDirectives { tecMatch := tokenEscapeCommand.FindStringSubmatch(strings.ToLower(line))