From 27295e94f244d204ff61316a2b6f732c19d2127d Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 21 Oct 2018 13:45:36 +0000 Subject: vm_core.h: fix typo [ci skip] The comment didn't make sense. As it's allocated with `ZALLOC_N(struct rb_call_cache, body->ci_size + body->ci_kw_size)`, it's very likely to be forgotten to press shift key on US keyboard. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index c311fd54fc..61279689e6 100644 --- a/vm_core.h +++ b/vm_core.h @@ -444,7 +444,7 @@ struct rb_iseq_constant_body { * So that: * struct rb_call_info_with_kwarg *cikw_entries = &body->ci_entries[ci_size]; */ - struct rb_call_cache *cc_entries; /* size is ci_size = ci_kw_size */ + struct rb_call_cache *cc_entries; /* size is ci_size + ci_kw_size */ struct { rb_snum_t flip_count; -- cgit v1.2.3