Use inspect instead of to_s for values

This commit is contained in:
Michael Miller 2019-02-28 19:29:24 -07:00
parent daf2f43f25
commit 0fce18a610

View file

@ -9,7 +9,7 @@ module Spectator::Formatting
def to_s(io) def to_s(io)
io << @key io << @key
io << ": " io << ": "
io << @value @value.inspect(io)
end end
end end
end end