From d8b4a7a514993c6197f7d5fbd8f69e5787a134fc Mon Sep 17 00:00:00 2001 From: nagachika Date: Tue, 2 Jun 2015 20:03:54 +0000 Subject: * vm_insnhelper.c: fix a typo. [ci skip] check_resopnd_to_missing -> check_respond_to_missing git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_insnhelper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vm_insnhelper.c') diff --git a/vm_insnhelper.c b/vm_insnhelper.c index eba27f42cc..64a23b7d80 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -2410,7 +2410,7 @@ FUNC_FASTCALL(rb_vm_opt_struct_aset)(rb_thread_t *th, rb_control_frame_t *reg_cf /* defined insn */ static enum defined_type -check_resopnd_to_missing(VALUE obj, VALUE v) +check_respond_to_missing(VALUE obj, VALUE v) { VALUE args[2]; VALUE r; @@ -2466,7 +2466,7 @@ vm_defined(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t op_type, VALUE expr_type = DEFINED_METHOD; } else { - expr_type = check_resopnd_to_missing(obj, v); + expr_type = check_respond_to_missing(obj, v); } break; case DEFINED_METHOD:{ @@ -2481,7 +2481,7 @@ vm_defined(rb_thread_t *th, rb_control_frame_t *reg_cfp, rb_num_t op_type, VALUE } } else { - expr_type = check_resopnd_to_missing(obj, v); + expr_type = check_respond_to_missing(obj, v); } break; } -- cgit v1.2.3