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:
parent
174fd5fd9a
commit
480c84e1af
1 changed files with 1 additions and 1 deletions
2
proc.c
2
proc.c
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue