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

ruby-changes:23804

From: drbrain <ko1@a...>
Date: Fri, 1 Jun 2012 06:30:47 +0900 (JST)
Subject: [ruby-changes:23804] drbrain:r35854 (trunk): * object.c (rb_equal): Let Object be a link in #=== documentation.

drbrain	2012-06-01 06:30:18 +0900 (Fri, 01 Jun 2012)

  New Revision: 35854

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

  Log:
    * object.c (rb_equal):  Let Object be a link in #=== documentation.
      Patch by Zachary Scott.  [ruby-trunk - Feature #6518]

  Modified files:
    trunk/ChangeLog
    trunk/object.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 35853)
+++ ChangeLog	(revision 35854)
@@ -1,3 +1,8 @@
+Fri Jun  1 06:29:42 2012  Eric Hodel  <drbrain@s...>
+
+	* object.c (rb_equal):  Let Object be a link in #=== documentation.
+	  Patch by Zachary Scott.  [ruby-trunk - Feature #6518]
+
 Thu May 31 09:27:06 2012  Eric Hodel  <drbrain@s...>
 
 	* ext/dl/lib/dl/struct.rb (DL::CStructEntity::size):  Refactored ::size
Index: object.c
===================================================================
--- object.c	(revision 35853)
+++ object.c	(revision 35854)
@@ -42,9 +42,9 @@
  *  call-seq:
  *     obj === other   -> true or false
  *
- *  Case Equality---For class <code>Object</code>, effectively the same
- *  as calling  <code>#==</code>, but typically overridden by descendants
- *  to provide meaningful semantics in <code>case</code> statements.
+ *  Case Equality -- For class Object, effectively the same as calling
+ *  <code>#==</code>, but typically overridden by descendants to provide
+ *  meaningful semantics in +case+ statements.
  */
 
 VALUE

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

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