1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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

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;