From be959c040e7f348ff2cc6a4aab3da62448845859 Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Fri, 2 Aug 2024 17:09:33 +0100 Subject: [PATCH] [DOC] Tweak for Array::[] --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 07073ed7b1..1449890b6c 100644 --- a/array.c +++ b/array.c @@ -1163,7 +1163,7 @@ rb_ary_initialize(int argc, VALUE *argv, VALUE ary) } /* - * Returns a new +Array+ object, populated with the given objects: + * Returns a new array, populated with the given objects: * * Array[1, 'a', /^A/] # => [1, "a", /^A/] * Array[] # => []