summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-10-30 12:30:45 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-10-30 12:30:45 +0900
commit17c6b6b16ebf20b73f44b5e9f58f9fb979881b98 (patch)
treee0e51c58c13d11aa0b8566fdebe1da7a1c5f2869 /vm.c
parent799253dc46e96518687dcd4fdca42582251ccffe (diff)
Fix a typo [ci skip]
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index db03873a29..ccb04c75f6 100644
--- a/vm.c
+++ b/vm.c
@@ -1014,7 +1014,7 @@ env_copy(const VALUE *src_ep, VALUE read_only_variables)
VALUE v = src_env->env[j];
if (!rb_ractor_shareable_p(v)) {
rb_raise(rb_ractor_error_class(),
- "can not make shareable Proc because it can refere unshareable object %"
+ "can not make shareable Proc because it can refer unshareable object %"
PRIsVALUE" from variable `%s'", rb_inspect(v), rb_id2name(id));
}
env_body[j] = v;