ruby-changes:39063
From: kazu <ko1@a...>
Date: Sun, 5 Jul 2015 01:52:53 +0900 (JST)
Subject: [ruby-changes:39063] kazu:r51144 (trunk): fix typos [ci skip]
kazu 2015-07-05 01:52:37 +0900 (Sun, 05 Jul 2015) New Revision: 51144 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51144 Log: fix typos [ci skip] Modified files: trunk/ChangeLog Index: ChangeLog =================================================================== --- ChangeLog (revision 51143) +++ ChangeLog (revision 51144) @@ -50,7 +50,7 @@ Fri Jul 03 20:05:10 2015 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L50 rb_callable_method_entry_t data because it is completely same data. In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class. - For example, there are classes C and D, and incldues M, + For example, there are classes C and D, and includes M, class C; include M; end class D; include M; end @@ -58,7 +58,7 @@ Fri Jul 03 20:05:10 2015 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L58 then, two T_ICLASS objects for C's super class and D's super class will be created. - When C.new.foo is called, then M#foo is searcheed and + When C.new.foo is called, then M#foo is searched and rb_callable_method_t data is used by VM to invoke M#foo. rb_method_entry_t data is only one for M#foo. @@ -99,13 +99,13 @@ Fri Jul 03 20:05:10 2015 Koichi Sasada https://github.com/ruby/ruby/blob/trunk/ChangeLog#L99 * internal.h: add rb_classext_struct::callable_m_tbl to cache rb_callable_method_entry_t data. - We need to consider abotu this field again because it is only + We need to consider about this field again because it is only active for T_ICLASS. * class.c (method_entry_i): ditto. * class.c (rb_define_attr): rb_method_entry() does not takes - defiend_class_ptr. + defined_class_ptr. * gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/