From b0bc85f933b3c76ff97fe5c8f8e22c87cb8c40f7 Mon Sep 17 00:00:00 2001 From: knu Date: Tue, 9 Jul 2013 07:02:06 +0000 Subject: * object.c: Fix rdoc for Kernel#<=>. [Fix GH-352] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ object.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b6276547ad..d6492713a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 9 15:57:20 2013 Akinori MUSHA + + * object.c: Fix rdoc for Kernel#<=>. [Fix GH-352] + Tue Jul 9 15:53:51 2013 Akinori MUSHA * lib/fileutils.rb (FileUtils#mode_to_s): Define mode_to_s() also diff --git a/object.c b/object.c index 23dbbf4d10..082d2f4c6e 100644 --- a/object.c +++ b/object.c @@ -1357,7 +1357,7 @@ rb_obj_not_match(VALUE obj1, VALUE obj2) * call-seq: * obj <=> other -> 0 or nil * - * Returns 0 if obj === other, otherwise nil. + * Returns 0 if obj.equal?(other) or obj == other, otherwise nil. * * The <=> is used by various methods to compare objects, for example * Enumerable#sort, Enumerable#max etc. -- cgit v1.2.3