Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kojix2 committed Jul 17, 2021
1 parent 44bbf85 commit d483f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/iruby/session/mixin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def unserialize(msg)
idents, msg_list = frames[0..i-1], frames[i+1..-1]

minlen = 5
raise 'malformed message, must have at least #{minlen} elements' unless msg_list.length >= minlen
raise "malformed message, must have at least #{minlen} elements" unless msg_list.length >= minlen
s, header, parent_header, metadata, content, buffers = *msg_list
raise 'Invalid signature' unless s == sign(msg_list[1..-1])
{
Expand Down

0 comments on commit d483f18

Please sign in to comment.