mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Use inspect instead of to_s for values
This commit is contained in:
parent
daf2f43f25
commit
0fce18a610
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue