summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authoruniversato <universato@gmail.com>2021-05-06 07:46:57 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-08-31 20:56:52 +0900
commitb6691e97374011dce31153295f47b617d7e2819b (patch)
tree030680c12362744de6cb4823fa9ea3d4cbe2b8e4 /array.c
parent3ffca65047d67cd958a424ba6dcc55112cc39e0a (diff)
Fix a code in the Array#min documentation.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4463
Diffstat (limited to 'array.c')
-rw-r--r--array.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/array.c b/array.c
index edac2169f9..34fdc7b22a 100644
--- a/array.c
+++ b/array.c
@@ -5921,8 +5921,7 @@ ary_min_opt_string(VALUE ary, long i, VALUE vmin)
*
* With an argument +n+ and a block, returns a new \Array with at most +n+ elements,
* in ascending order per the block:
- * [0, 1, 2, 3].min(3) # => [0, 1, 2]
- * [0, 1, 2, 3].min(6) # => [0, 1, 2, 3]
+ * ['0', '00', '000'].min(2) {|a, b| a.size <=> b.size } # => ["0", "00"]
*/
static VALUE
rb_ary_min(int argc, VALUE *argv, VALUE ary)