From ca886cd253e5c38b0bd51e57ad791c00533c20a0 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Mon, 25 Dec 2023 13:56:15 -0500 Subject: [DOC] Link to Array#eql? from Array#hash --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'array.c') diff --git a/array.c b/array.c index d029d44b39..8fe44292e2 100644 --- a/array.c +++ b/array.c @@ -5191,7 +5191,7 @@ rb_ary_hash_values(long len, const VALUE *elements) * * Returns the integer hash value for +self+. * - * Two arrays with the same content will have the same hash code (and will compare using eql?): + * Two arrays with the same content will have the same hash code (and will compare using #eql?): * * [0, 1, 2].hash == [0, 1, 2].hash # => true * [0, 1, 2].hash == [0, 1, 3].hash # => false -- cgit v1.2.3