From dd0aa36de8846c222efc21a781ee93ff5d66475c Mon Sep 17 00:00:00 2001 From: Curtis Vogt Date: Fri, 8 Jul 2016 15:02:08 -0500 Subject: [PATCH] Fix comment for #17202 --- test/show.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/show.jl b/test/show.jl index 9956c803c527b..b8e9abe1a7435 100644 --- a/test/show.jl +++ b/test/show.jl @@ -501,7 +501,7 @@ let s = IOBuffer(Array{UInt8}(0), true, true) @test String(resize!(s.data, s.size)) == " 1\n 2\n 3" end -# The `dump` function should alway have a trailing newline +# The `dump` function should always have a trailing newline let io = IOBuffer() dump(io, :(x = 1)) @test takebuf_string(io)[end] == '\n'