From 3da0f60bb9e6619e1ddbfb2d96e6dcdbff22f255 Mon Sep 17 00:00:00 2001 From: ko1 Date: Sat, 30 May 2015 19:18:40 +0000 Subject: * method.h: fix typo of comments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ method.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index c5f7180fbb..3ace5e1e06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun May 31 04:18:06 2015 Koichi Sasada + + * method.h: fix typo of comments. + Sun May 31 03:36:42 2015 Koichi Sasada * method.h: add VM_METHOD_TYPE_ALIAS rb_method_definition_t::type diff --git a/method.h b/method.h index 1e83c76b96..79f72ec5ff 100644 --- a/method.h +++ b/method.h @@ -85,13 +85,13 @@ typedef struct rb_method_definition_struct { union { struct { - rb_iseq_t *const iseq; /* should be mark */ + rb_iseq_t *const iseq; /* should be marked */ rb_cref_t *cref; } iseq_body; rb_method_cfunc_t cfunc; rb_method_attr_t attr; rb_method_alias_t alias; - const VALUE proc; /* should be mark */ + const VALUE proc; /* should be marked */ enum method_optimized_type { OPTIMIZED_METHOD_TYPE_SEND, OPTIMIZED_METHOD_TYPE_CALL, @@ -107,7 +107,7 @@ typedef struct rb_method_entry_struct { char mark; rb_method_definition_t *def; ID called_id; - VALUE klass; /* should be mark */ + VALUE klass; /* should be marked */ } rb_method_entry_t; struct unlinked_method_entry_list_entry { -- cgit v1.2.3