Skip to content

Commit 805d0a4

Browse files
committed
fix typos [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51144 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 39be41c commit 805d0a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ChangeLog

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ Fri Jul 03 20:05:10 2015 Koichi Sasada <ko1@atdot.net>
5050
rb_callable_method_entry_t data because it is completely same data.
5151
In this case, rb_method_entry_t::owner == rb_method_entry_t::defined_class.
5252

53-
For example, there are classes C and D, and incldues M,
53+
For example, there are classes C and D, and includes M,
5454

5555
class C; include M; end
5656
class D; include M; end
5757

5858
then, two T_ICLASS objects for C's super class and D's super class
5959
will be created.
6060

61-
When C.new.foo is called, then M#foo is searcheed and
61+
When C.new.foo is called, then M#foo is searched and
6262
rb_callable_method_t data is used by VM to invoke M#foo.
6363

6464
rb_method_entry_t data is only one for M#foo.
@@ -99,13 +99,13 @@ Fri Jul 03 20:05:10 2015 Koichi Sasada <ko1@atdot.net>
9999
* internal.h: add rb_classext_struct::callable_m_tbl to cache
100100
rb_callable_method_entry_t data.
101101

102-
We need to consider abotu this field again because it is only
102+
We need to consider about this field again because it is only
103103
active for T_ICLASS.
104104

105105
* class.c (method_entry_i): ditto.
106106

107107
* class.c (rb_define_attr): rb_method_entry() does not takes
108-
defiend_class_ptr.
108+
defined_class_ptr.
109109

110110
* gc.c (mark_method_entry): mark RCLASS_CALLABLE_M_TBL() for T_ICLASS.
111111

0 commit comments

Comments
 (0)