1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix error message.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2017-08-29 07:01:27 +00:00
parent 174fd5fd9a
commit 480c84e1af

2
proc.c
View file

@ -500,7 +500,7 @@ bind_local_variable_get(VALUE bindval, VALUE sym)
if ((ptr = get_local_variable_ptr(&env, lid)) == NULL) {
sym = ID2SYM(lid);
undefined:
rb_name_err_raise("local variable `%1$s' not defined for %2$s",
rb_name_err_raise("local variable `%1$s' is not defined for %2$s",
bindval, sym);
}