aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)