Browse code

Fixed spelling error in builder/dockerfile/parser/parser.go

Signed-off-by: Tiffany Jernigan <tiffany.f.j@gmail.com>

Tiffany Jernigan authored on 2016/06/10 06:47:05
Showing 1 changed files
... ...
@@ -91,7 +91,7 @@ func init() {
91 91
 // ParseLine parse a line and return the remainder.
92 92
 func ParseLine(line string) (string, *Node, error) {
93 93
 
94
-	// Handle the parser directive '# escape=<char>. Parser directives must preceed
94
+	// Handle the parser directive '# escape=<char>. Parser directives must precede
95 95
 	// any builder instruction or other comments, and cannot be repeated.
96 96
 	if lookingForDirectives {
97 97
 		tecMatch := tokenEscapeCommand.FindStringSubmatch(strings.ToLower(line))