aboutsummaryrefslogtreecommitdiffstats
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-15 00:08:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-03-15 00:08:24 +0000
commit1b9ff04f650d3ec600c3f3db7abbcf98912e4eff (patch)
tree66fdd00d31f5e7cf61ecb2287498ec23aebad49b /object.c
parent1784c9a009f6fd6ad8e2f1eda04f08568c73b236 (diff)
downloadruby-1b9ff04f650d3ec600c3f3db7abbcf98912e4eff.tar.gz
object.c: [DOC] merge rdoc
* gc.c (rb_obj_id): remove unused rdoc. * object.c (rb_obj_hash): [DOC] merge unused rdoc from rb_obj_id() in gc.c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/object.c b/object.c
index 240b4f54d2..2fdbe4ec45 100644
--- a/object.c
+++ b/object.c
@@ -146,6 +146,9 @@ rb_obj_equal(VALUE obj1, VALUE obj2)
}
/*
+ * call-seq:
+ * obj.hash -> fixnum
+ *
* Generates a Fixnum hash value for this object. This function must have the
* property that <code>a.eql?(b)</code> implies <code>a.hash == b.hash</code>.
*