summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-21 12:01:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-21 12:01:36 +0000
commit638c96858274deb90b2b923477d6b9525e1ed065 (patch)
tree087e5a68cac531733a811e74cc4fcdf8703d0d45 /array.c
parent969156ce9a04b92ffc5b048cfbe666ae1f7b1cbd (diff)
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
Diffstat (limited to 'array.c')
-rw-r--r--array.c4
1 files 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 <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)