summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorBurdette Lamar <BurdetteLamar@Yahoo.com>2022-03-25 13:48:21 -0500
committerGitHub <noreply@github.com>2022-03-25 13:48:21 -0500
commit1a002d9ade6e2c78650bbf1894ad7c4138bc808d (patch)
tree594ccbe87dcbbebddbd4f7386a5ab15ef090ec1b /array.c
parentd0b7df81535a0201a17adc74d6731253cd70689e (diff)
Fix formatting errors in What's Here for Array, Hash, ENV (#5718)
Notes
Notes: Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
Diffstat (limited to 'array.c')
-rw-r--r--array.c8
1 files changed, 4 insertions, 4 deletions
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 <tt>==</tt> 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.