array.c: [DOC] remove unnecessary markups [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2019-03-21 12:01:36 +00:00
Родитель 969156ce9a
Коммит 638c968582
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -4735,7 +4735,7 @@ rb_ary_union_multi(int argc, VALUE *argv, VALUE ary)
* ary.max(n) {|a, b| block} -> array
*
* Returns the object in _ary_ with the maximum value. The
* first form assumes all objects implement <code>Comparable</code>;
* first form assumes all objects implement Comparable;
* the second uses the block to return <em>a <=> b</em>.
*
* ary = %w(albatross dog horse)
@ -4788,7 +4788,7 @@ rb_ary_max(int argc, VALUE *argv, VALUE ary)
* ary.min(n) {| a,b | block } -> array
*
* Returns the object in _ary_ with the minimum value. The
* first form assumes all objects implement <code>Comparable</code>;
* first form assumes all objects implement Comparable;
* the second uses the block to return <em>a <=> b</em>.
*
* ary = %w(albatross dog horse)