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

ruby-changes:19492

From: nagachika <ko1@a...>
Date: Thu, 12 May 2011 21:18:53 +0900 (JST)
Subject: [ruby-changes:19492] nagachika:r31532 (trunk): * object.c: format comments to keep 80 columns in a line.

nagachika	2011-05-12 21:18:47 +0900 (Thu, 12 May 2011)

  New Revision: 31532

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

  Log:
    * object.c: format comments to keep 80 columns in a line.

  Modified files:
    trunk/object.c

Index: object.c
===================================================================
--- object.c	(revision 31531)
+++ object.c	(revision 31532)
@@ -97,14 +97,15 @@
     return Qfalse;
 }
 
-/* 
- * Generates a <code>Fixnum</code> hash value for this object. This function must have the
- * property that a.eql?(b) implies a.hash <code>==</code> b.hash. The hash value is used by
- * class <code>Hash</code>. Any hash value that exceeds the capacity of a <code>Fixnum</code> will be
+/*
+ * Generates a <code>Fixnum</code> hash value for this object.
+ * This function must have the property that a.eql?(b) implies
+ * a.hash <code>==</code> b.hash.
+ * The hash value is used by class <code>Hash</code>.
+ * Any hash value that exceeds the capacity of a <code>Fixnum</code> will be
  * truncated before being used.
  *
- * 	"waffle"	#=> "waffle"
- * 	"waffle".hash	#=> -910576647
+ *      "waffle".hash #=> -910576647
  */
 VALUE
 rb_obj_hash(VALUE obj)

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

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