ruby-changes:55124
From: nobu <ko1@a...>
Date: Thu, 21 Mar 2019 21:01:42 +0900 (JST)
Subject: [ruby-changes:55124] nobu:r67331 (trunk): array.c: [DOC] remove unnecessary markups [ci skip]
nobu 2019-03-21 21:01:36 +0900 (Thu, 21 Mar 2019) New Revision: 67331 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67331 Log: array.c: [DOC] remove unnecessary markups [ci skip] Modified files: trunk/array.c Index: array.c =================================================================== --- array.c (revision 67330) +++ array.c (revision 67331) @@ -4735,7 +4735,7 @@ rb_ary_union_multi(int argc, VALUE *argv https://github.com/ruby/ruby/blob/trunk/array.c#L4735 * 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 https://github.com/ruby/ruby/blob/trunk/array.c#L4788 * 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) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/