diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-10-30 12:30:45 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-10-30 12:30:45 +0900 |
commit | 17c6b6b16ebf20b73f44b5e9f58f9fb979881b98 (patch) | |
tree | e0e51c58c13d11aa0b8566fdebe1da7a1c5f2869 /vm.c | |
parent | 799253dc46e96518687dcd4fdca42582251ccffe (diff) |
Fix a typo [ci skip]
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |