diff --git a/array.c b/array.c
index f780c91ca0..5851b19050 100644
--- a/array.c
+++ b/array.c
@@ -5237,7 +5237,7 @@ recursive_eql(VALUE ary1, VALUE ary2, int recur)
/*
* call-seq:
- * array.eql?(other_array) -> true or false
+ * eql?(other_array) -> true or false
*
* Returns +true+ if +self+ and +other_array+ are the same size,
* and if, for each index +i+ in +self+, self[i].eql?(other_array[i]):
@@ -5250,6 +5250,8 @@ recursive_eql(VALUE ary1, VALUE ary2, int recur)
*
* This method is different from method Array#==,
* which compares using method Object#==.
+ *
+ * Related: see {Methods for Querying}[rdoc-ref:Array@Methods+for+Querying].
*/
static VALUE