From 9fac3321a7207552f2717bed4193a8c3bdd31234 Mon Sep 17 00:00:00 2001 From: nagachika Date: Thu, 12 May 2011 12:18:47 +0000 Subject: * object.c: format comments to keep 80 columns in a line. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'object.c') diff --git a/object.c b/object.c index f4a28fd259..5e19eb30f1 100644 --- a/object.c +++ b/object.c @@ -97,14 +97,15 @@ rb_obj_equal(VALUE obj1, VALUE obj2) return Qfalse; } -/* - * Generates a Fixnum hash value for this object. This function must have the - * property that a.eql?(b) implies a.hash == b.hash. The hash value is used by - * class Hash. Any hash value that exceeds the capacity of a Fixnum will be +/* + * Generates a Fixnum hash value for this object. + * This function must have the property that a.eql?(b) implies + * a.hash == b.hash. + * The hash value is used by class Hash. + * Any hash value that exceeds the capacity of a Fixnum will be * truncated before being used. * - * "waffle" #=> "waffle" - * "waffle".hash #=> -910576647 + * "waffle".hash #=> -910576647 */ VALUE rb_obj_hash(VALUE obj) -- cgit v1.2.3