From a50750c8a960ef62b3e1dbd78b12056f0512b17d Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Tue, 21 Jul 2020 12:55:28 -0500 Subject: [PATCH] Enhanced RDoc for Array --- array.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/array.c b/array.c index 591ae9cfce..627e0fda18 100644 --- a/array.c +++ b/array.c @@ -5461,15 +5461,9 @@ rb_ary_concat(VALUE x, VALUE y) * * --- * - * When argument +n+ is given, returns a new \Array - * built by concatenating +n+ copies of +self+. - * - * If +n+ is positive, returns the concatenation of +n+ repetitions of +self+: + * When argument +n+ is given, returns a new array built by concatenating the +int+ copies of +self+: * a = ['x', 'y'] * a * 3 # => ["x", "y", "x", "y", "x", "y"] - * - * If +n+ is zero, returns an new empty \Array: - * a = [0, 1] * a * 0 # => [] * * ---