Unverified Commit 8945afe3 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #5322 from shuujii/fix-message-of-ThrowCatchJump-in-mruby-catch-gem

Fix message of `ThrowCatchJump` in `mruby-catch` gem
parents 8ecd38d6 80965fe2
......@@ -2,7 +2,7 @@ class ThrowCatchJump < Exception
def initialize(tag, val)
@tag = tag
@val = val
super("uncaught throw :#{tag}")
super("uncaught throw #{tag.inspect}")
end
def _tag
@tag
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment