mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
480eccbb35
commit
27295e94f2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue