summaryrefslogtreecommitdiff
path: root/builder/dockerfile/parser
diff options
context:
space:
mode:
authorJustas Brazauskas <brazauskasjustas@gmail.com>2015-12-13 18:00:39 +0200
committerJustas Brazauskas <brazauskasjustas@gmail.com>2015-12-13 18:04:12 +0200
commit927b334ebfc786276a039e45ec097e71bf9a104c (patch)
treeaea38d3379578a46e2d57e71b6c410c05c3573d8 /builder/dockerfile/parser
parentf5e6b09783b592c67631e77c43c81e996a3971c3 (diff)
downloaddocker-927b334ebfc786276a039e45ec097e71bf9a104c.tar.gz
Fix typos found across repository
Signed-off-by: Justas Brazauskas <brazauskasjustas@gmail.com>
Diffstat (limited to 'builder/dockerfile/parser')
-rw-r--r--builder/dockerfile/parser/parser_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/builder/dockerfile/parser/parser_test.go b/builder/dockerfile/parser/parser_test.go
index ee892cf9ac..983a590a62 100644
--- a/builder/dockerfile/parser/parser_test.go
+++ b/builder/dockerfile/parser/parser_test.go
@@ -70,7 +70,7 @@ func TestTestData(t *testing.T) {
}
if runtime.GOOS == "windows" {
- // CRLF --> CR to match Unix behaviour
+ // CRLF --> CR to match Unix behavior
content = bytes.Replace(content, []byte{'\x0d', '\x0a'}, []byte{'\x0a'}, -1)
}