[前][次][番号順一覧][スレッド一覧]

ruby-changes:38659

From: nagachika <ko1@a...>
Date: Wed, 3 Jun 2015 05:04:07 +0900 (JST)
Subject: [ruby-changes:38659] nagachika:r50740 (trunk): * vm_insnhelper.c: fix a typo. [ci skip]

nagachika	2015-06-03 05:03:54 +0900 (Wed, 03 Jun 2015)

  New Revision: 50740

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=50740

  Log:
    * vm_insnhelper.c: fix a typo. [ci skip]
      check_resopnd_to_missing -> check_respond_to_missing

  Modified files:
    trunk/vm_insnhelper.c
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 50739)
+++ vm_insnhelper.c	(revision 50740)
@@ -2410,7 +2410,7 @@ FUNC_FASTCALL(rb_vm_opt_struct_aset)(rb_ https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2410
 /* 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_f https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2466
 	    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_f https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2481
 	    }
 	}
 	else {
-	    expr_type = check_resopnd_to_missing(obj, v);
+	    expr_type = check_respond_to_missing(obj, v);
 	}
 	break;
       }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]