mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
a6e3d4bea0
commit
b0bc85f933
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Jul 9 15:57:20 2013 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* object.c: Fix rdoc for Kernel#<=>. [Fix GH-352]
|
||||
|
||||
Tue Jul 9 15:53:51 2013 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* lib/fileutils.rb (FileUtils#mode_to_s): Define mode_to_s() also
|
||||
|
|
2
object.c
2
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.
|
||||
|
|
Loading…
Reference in a new issue