Fix typo in "refinements"

This commit is contained in:
Peter Zhu 2023-09-19 19:34:50 -04:00
parent 4c1e367039
commit 38e98cbb6a
2 changed files with 3 additions and 3 deletions

View file

@ -545,7 +545,7 @@ rb_call0(rb_execution_context_t *ec,
RB_DEBUG_COUNTER_INC(call0_public);
const rb_callable_method_entry_t *cc_cme = cc ? vm_cc_cme(cc) : NULL;
const rb_callable_method_entry_t *cme = callable_method_entry_refeinements0(CLASS_OF(recv), mid, NULL, true, cc_cme);
const rb_callable_method_entry_t *cme = callable_method_entry_refinements0(CLASS_OF(recv), mid, NULL, true, cc_cme);
call_status = rb_method_call_status(ec, cme, scope, self);
if (UNLIKELY(call_status != MISSING_NONE)) {