From 175a98d5160e9c3773c1273c07255c6ab9b8a396 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Sat, 7 Sep 2024 16:05:25 -0500 Subject: [PATCH] [DOC] Related for Array#collect! --- array.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/array.c b/array.c index a71763ed2c..0f3bdfff4a 100644 --- a/array.c +++ b/array.c @@ -3730,6 +3730,9 @@ rb_ary_collect(VALUE ary) * a.map! { |element| element.class } # => [Symbol, String, Integer] * * With no block given, returns a new Enumerator. + * + * Related: #collect; + * see also {Methods for Converting}[rdoc-ref:Array@Methods+for+Converting]. */ static VALUE