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

ruby-changes:22180

From: naruse <ko1@a...>
Date: Sun, 8 Jan 2012 00:21:19 +0900 (JST)
Subject: [ruby-changes:22180] naruse:r34229 (trunk): Fix typo of rdoc of Object#inspect.

naruse	2012-01-08 00:21:09 +0900 (Sun, 08 Jan 2012)

  New Revision: 34229

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

  Log:
    Fix typo of rdoc of Object#inspect.

  Modified files:
    trunk/object.c

Index: object.c
===================================================================
--- object.c	(revision 34228)
+++ object.c	(revision 34229)
@@ -425,9 +425,9 @@
  * Returns a string containing a human-readable representation of <i>obj</i>.
  * By default, if the <i>obj</i> has instance variables, show the class name
  * and instance variable details which is the list of the name and the result
- * of <i>inspect</i> method for each instance variables.
+ * of <i>inspect</i> method for each instance variable.
  * Otherwise uses the <i>to_s</i> method to generate the string.
- * If the <i>to_s</i> mthoed is overridden, uses it.
+ * If the <i>to_s</i> method is overridden, uses it.
  * User defined classes should override this method to make better
  * representation of <i>obj</i>.  When overriding this method, it should
  * return a string whose encoding is compatible with the default external

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

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