summaryrefslogtreecommitdiff
path: root/insns.def
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-18 13:05:38 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-18 13:05:38 +0000
commit93b1b04a20b69fa1d1dd6aedac86bc97d8d71db5 (patch)
tree15238a10e5f666372dbab1a6986456811a3cba6c /insns.def
parent89b13fd364dae4813ab1b14e47003ae8e7451653 (diff)
typo fix (sorry!) [ci skip]
Surprisingly this was not a syntax error on my machine. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def2
1 files changed, 1 insertions, 1 deletions
diff --git a/insns.def b/insns.def
index 0e8efe4a4c..45dab0a927 100644
--- a/insns.def
+++ b/insns.def
@@ -702,7 +702,7 @@ checkmatch
(VALUE target, VALUE pattern)
(VALUE result)
{
- result = vm_check_match(target, pattern, flag)
+ result = vm_check_match(target, pattern, flag);
}
/**