summaryrefslogtreecommitdiff
path: root/method.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-30 19:18:40 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-05-30 19:18:40 +0000
commit3da0f60bb9e6619e1ddbfb2d96e6dcdbff22f255 (patch)
tree3f72e7508345f453202e506cbedfda1482d2eaa7 /method.h
parentf1d4e8b3b3be402621b043e858a8da5fc8797662 (diff)
* method.h: fix typo of comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h6
1 files changed, 3 insertions, 3 deletions
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 {