From 638c96858274deb90b2b923477d6b9525e1ed065 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 21 Mar 2019 12:01:36 +0000 Subject: [PATCH] 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 --- array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/array.c b/array.c index d096347c43..f8effc9d61 100644 --- a/array.c +++ b/array.c @@ -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 Comparable; + * first form assumes all objects implement Comparable; * the second uses the block to return a <=> b. * * 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 Comparable; + * first form assumes all objects implement Comparable; * the second uses the block to return a <=> b. * * ary = %w(albatross dog horse)