mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Missing space between prefix and value
This commit is contained in:
parent
c197f3236f
commit
66ac2eb080
1 changed files with 2 additions and 0 deletions
|
@ -25,12 +25,14 @@ module Spectator::Matchers
|
|||
# Produces a stringified value.
|
||||
def to_s(io)
|
||||
io << prefix
|
||||
io << ' '
|
||||
io << @value
|
||||
end
|
||||
|
||||
# Produces a stringified value with additional information.
|
||||
def inspect(io)
|
||||
io << prefix
|
||||
io << ' '
|
||||
@value.inspect(io)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue