aboutsummaryrefslogtreecommitdiffstats
path: root/vm_method.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-07-19 23:13:21 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-07-19 23:13:21 +0900
commitd637208abd0ae7ccf0539679ca52df1caada4db7 (patch)
tree1d643b3131992862f295eb2adc7782cdbd64927a /vm_method.c
parent2eaa53e9a38b46442508878ac1795d91688701e3 (diff)
downloadruby-d637208abd0ae7ccf0539679ca52df1caada4db7.tar.gz
Fixed a typo
Diffstat (limited to 'vm_method.c')
-rw-r--r--vm_method.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm_method.c b/vm_method.c
index d8d1552432..2b51605433 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -130,7 +130,7 @@ rb_clear_constant_cache(void)
static rb_method_entry_t *rb_method_entry_alloc(ID called_id, VALUE owner, VALUE defined_class, const rb_method_definition_t *def);
const rb_method_entry_t * rb_method_entry_clone(const rb_method_entry_t *src_me);
-static const rb_callable_method_entry_t *copmplemented_callable_method_entry(VALUE klass, ID id);
+static const rb_callable_method_entry_t *complemented_callable_method_entry(VALUE klass, ID id);
static void
clear_method_cache_by_id_in_class(VALUE klass, ID mid)
@@ -160,7 +160,7 @@ clear_method_cache_by_id_in_class(VALUE klass, ID mid)
RB_DEBUG_COUNTER_INC(cc_invalidate_leaf);
}
else {
- const rb_callable_method_entry_t *cme = copmplemented_callable_method_entry(klass, mid);
+ const rb_callable_method_entry_t *cme = complemented_callable_method_entry(klass, mid);
if (cme) {
// invalidate cme if found to invalidate the inline method cache.
@@ -991,7 +991,7 @@ prepare_callable_method_entry(VALUE defined_class, ID id, const rb_method_entry_
}
static const rb_callable_method_entry_t *
-copmplemented_callable_method_entry(VALUE klass, ID id)
+complemented_callable_method_entry(VALUE klass, ID id)
{
VALUE defined_class;
rb_method_entry_t *me = search_method_protect(klass, id, &defined_class);