From f77517f473c38e3fcef72c23de977a44da881caf Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Fri, 4 Oct 2024 13:36:36 -0400 Subject: [PATCH] [DOC] Minor adjustment for Array#min --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 905bfd7846..9abc63d2d7 100644 --- a/array.c +++ b/array.c @@ -6125,7 +6125,7 @@ ary_min_opt_string(VALUE ary, long i, VALUE vmin) * With a block given, the block must return a numeric. * * With a block and no argument, calls the block self.size - 1 times to compare elements; - * returns the element having the minimum return value per the block: + * returns the element having the minimum value per the block: * * ['0', '', '000', '00'].min {|a, b| a.size <=> b.size } * # => ""