* compar.c: Update doc for == [#7688] [ci-skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2015-12-15 20:19:35 +00:00
Родитель e337dc6517
Коммит bb9ef64e5b
2 изменённых файлов: 4 добавлений и 3 удалений

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

@ -57,6 +57,10 @@ with all sufficient information, see the ChangeLog file.
* Array#bsearch_index [Feature #10730]
* Array#dig [Feature #11643]
* Comparable
* Comparable#== no longer rescues exceptions [Feature #7688]
* Enumerable
* Enumerable#grep_v is added as inverse version of Enumerable#grep.

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

@ -64,9 +64,6 @@ cmp_eq_recursive(VALUE arg1, VALUE arg2, int recursive)
* Compares two objects based on the receiver's <code><=></code>
* method, returning true if it returns 0. Also returns true if
* _obj_ and _other_ are the same object.
*
* Even if _obj_ <=> _other_ raised an exception, the exception
* is ignored and returns false.
*/
static VALUE