* 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:
knu 2013-07-09 07:02:06 +00:00
Родитель a6e3d4bea0
Коммит b0bc85f933
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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.