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

ruby-changes:38611

From: ko1 <ko1@a...>
Date: Sun, 31 May 2015 04:19:13 +0900 (JST)
Subject: [ruby-changes:38611] ko1:r50692 (trunk): * method.h: fix typo of comments.

ko1	2015-05-31 04:18:40 +0900 (Sun, 31 May 2015)

  New Revision: 50692

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

  Log:
    * method.h: fix typo of comments.

  Modified files:
    trunk/ChangeLog
    trunk/method.h
Index: method.h
===================================================================
--- method.h	(revision 50691)
+++ method.h	(revision 50692)
@@ -85,13 +85,13 @@ typedef struct rb_method_definition_stru https://github.com/ruby/ruby/blob/trunk/method.h#L85
 
     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 { https://github.com/ruby/ruby/blob/trunk/method.h#L107
     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 {
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 50691)
+++ ChangeLog	(revision 50692)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun May 31 04:18:06 2015  Koichi Sasada  <ko1@a...>
+
+	* method.h: fix typo of comments.
+
 Sun May 31 03:36:42 2015  Koichi Sasada  <ko1@a...>
 
 	* method.h: add VM_METHOD_TYPE_ALIAS rb_method_definition_t::type

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

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