Skip to content

Commit

Permalink
fixed display issue for comma sep
Browse files Browse the repository at this point in the history
  • Loading branch information
tk3369 committed Mar 11, 2018
1 parent 26e6917 commit 1466b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResultSet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function Base.show(io::IO, rs::ResultSet)
for i in 1:n
print(io, i, ": ")
for j in 1:m
j > 1 && print(", ")
j > 1 && print(io, ", ")
print(io, rs.columns[j][i])
end
println(io)
Expand Down

0 comments on commit 1466b6b

Please sign in to comment.