diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-20 05:13:39 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-20 05:13:39 +0000 |
commit | b88a5027b86d8bfd8a0892588322e1083e9caa1d (patch) | |
tree | 617eb0bab002985538802a2f4e2221459989f87f /object.c | |
parent | fedc3756fb6d311f9ddaa0714192f5c5b0fcf542 (diff) | |
download | ruby-b88a5027b86d8bfd8a0892588322e1083e9caa1d.tar.gz |
Add rdoc about Kernel#<=> [ruby-core:31770]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1160,7 +1160,12 @@ rb_obj_not_match(VALUE obj1, VALUE obj2) } -/* :nodoc: */ +/* + * call-seq: + * obj <=> other -> 0 or nil + * + * Returns 0 if obj === other, otherwise nil. + */ static VALUE rb_obj_cmp(VALUE obj1, VALUE obj2) { |