Skip to content

Commit

Permalink
fix ReadPacket#to_s
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian J. Cardiff committed Aug 31, 2016
1 parent feb0b2a commit a06d210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mysql/read_packet.cr
Expand Up @@ -13,7 +13,7 @@ class MySql::ReadPacket
end

def to_s(io)
io << "MySql::IncomingPacket[length: " << io << @length << ", seq: " << @seq << ", remaining: " << @remaining << "]"
io << "MySql::IncomingPacket[length: " << @length << ", seq: " << @seq << ", remaining: " << @remaining << "]"
end

def read(slice : Bytes)
Expand Down

0 comments on commit a06d210

Please sign in to comment.