From 66181fdda599e32d86f6b5aa9c671bb0feacf47f Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Fri, 2 Aug 2024 17:29:05 +0100 Subject: [PATCH] [DOC] Tweak to Array#& --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 9ad5c68af7..977dae4a6d 100644 --- a/array.c +++ b/array.c @@ -5506,7 +5506,7 @@ rb_ary_difference_multi(int argc, VALUE *argv, VALUE ary) * call-seq: * self & other_array -> new_array * - * Returns a new +Array+ object containing the _intersection_ of +self+ and +other_array+; + * Returns a new array containing the _intersection_ of +self+ and +other_array+; * that is, containing those elements found in both +self+ and +other_array+: * * [0, 1, 2, 3] & [1, 2] # => [1, 2]