summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-29 07:01:27 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-29 07:01:27 +0000
commit480c84e1afbe54d4b63da64d26fab2d39819557a (patch)
tree3f3b48ef18d8eb27943ba23a430504bd03827b0c /proc.c
parent174fd5fd9af8cd0c55a286fe5f59b59c58e6262e (diff)
fix error message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index b43e11f04a..f35994b111 100644
--- a/proc.c
+++ b/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);
}