From 7595c5d4a5d5cf23bab7a28ce7e6c0f3a00419d1 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 27 Dec 2023 11:15:13 -0500 Subject: [PATCH] [DOC] Add parantheses in call-seq for Hash#eql? --- hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash.c b/hash.c index 75637c3b03..4b74261ae8 100644 --- a/hash.c +++ b/hash.c @@ -3786,7 +3786,7 @@ rb_hash_equal(VALUE hash1, VALUE hash2) /* * call-seq: - * hash.eql? object -> true or false + * hash.eql?(object) -> true or false * * Returns +true+ if all of the following are true: * * +object+ is a \Hash object.