diff --git a/builder/dockerfile/parser/parser.go b/builder/dockerfile/parser/parser.go index 5a61a9d408..eefbf0cf39 100644 --- a/builder/dockerfile/parser/parser.go +++ b/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))