Fix a typo [ci skip]

This commit is contained in:
Kazuhiro NISHIYAMA 2020-10-30 12:30:45 +09:00
parent 799253dc46
commit 17c6b6b16e
No known key found for this signature in database
GPG Key ID: 262ED8DBB4222F7A
1 changed files with 1 additions and 1 deletions

2
vm.c
View File

@ -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;