[Doc] Fix Array#count comparing strategy

This commit is contained in:
Kenichi Kamiya 2021-03-29 01:02:21 +09:00 коммит произвёл Marc-André Lafortune
Родитель 989e22f394
Коммит 813c3333a9
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -6093,7 +6093,7 @@ rb_ary_compact(VALUE ary)
* [0, 1, 2].count # => 3
* [].count # => 0
*
* With argument +obj+, returns the count of elements <tt>eql?</tt> to +obj+:
* With argument +obj+, returns the count of elements <tt>==</tt> to +obj+:
* [0, 1, 2, 0].count(0) # => 2
* [0, 1, 2].count(3) # => 0
*
@ -6102,7 +6102,7 @@ rb_ary_compact(VALUE ary)
* [0, 1, 2, 3].count {|element| element > 1} # => 2
*
* With argument +obj+ and a block given, issues a warning, ignores the block,
* and returns the count of elements <tt>eql?</tt> to +obj+:
* and returns the count of elements <tt>==</tt> to +obj+:
*/
static VALUE