From b88a5027b86d8bfd8a0892588322e1083e9caa1d Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 20 Aug 2010 05:13:39 +0000 Subject: [PATCH] Add rdoc about Kernel#<=> [ruby-core:31770] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/object.c b/object.c index 0eb766846b..aa203dd892 100644 --- a/object.c +++ b/object.c @@ -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) {