From 1a002d9ade6e2c78650bbf1894ad7c4138bc808d Mon Sep 17 00:00:00 2001 From: Burdette Lamar Date: Fri, 25 Mar 2022 13:48:21 -0500 Subject: Fix formatting errors in What's Here for Array, Hash, ENV (#5718) --- array.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'array.c') diff --git a/array.c b/array.c index ca8be28c61..672aff7be8 100644 --- a/array.c +++ b/array.c @@ -8194,7 +8194,7 @@ rb_ary_deconstruct(VALUE ary) * * === Methods for Comparing - * - {<=>}[Array.html#method-i-3C-3D-3E]: Returns -1, 0, or 1 + * - {<=>}[#method-i-3C-3D-3E]: Returns -1, 0, or 1 * as +self+ is less than, equal to, or greater than a given object. * - #==: Returns whether each element in +self+ is == to the corresponding element * in a given object. @@ -8277,12 +8277,12 @@ rb_ary_deconstruct(VALUE ary) * * === Methods for Combining * - * - {&}[Array.html#method-i-26]: Returns an array containing elements found both in +self+ and a given array. + * - {&}[#method-i-26]: Returns an array containing elements found both in +self+ and a given array. * - #intersection: Returns an array containing elements found both in +self+ * and in each given array. * - #+: Returns an array containing all elements of +self+ followed by all elements of a given array. - * - #-: Returns an array containiing all elements of +self+ that are not found in a given array. - * - {|}[Array.html#method-i-7C]: Returns an array containing all elements of +self+ and all elements of a given array, + * - #-: Returns an array containing all elements of +self+ that are not found in a given array. + * - {|}[#method-i-7C]: Returns an array containing all elements of +self+ and all elements of a given array, * duplicates removed. * - #union: Returns an array containing all elements of +self+ and all elements of given arrays, * duplicates removed. -- cgit v1.2.1