aboutsummaryrefslogtreecommitdiffstats
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
commit13293658d190edc2dda35be6aec20def09236e72 (patch)
tree3f3b48ef18d8eb27943ba23a430504bd03827b0c /proc.c
parentf56e04bde501a5072f892a1e642ed634f9ccf834 (diff)
downloadruby-13293658d190edc2dda35be6aec20def09236e72.tar.gz
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);
}