summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2023-12-27 11:15:13 -0500
committerPeter Zhu <[email protected]>2023-12-29 09:10:58 -0500
commit7595c5d4a5d5cf23bab7a28ce7e6c0f3a00419d1 (patch)
tree3e01ba2a28b960d67f3dbeea1c6e09401b1f08f1 /hash.c
parentbb59696614083660241ef272f222628cbfa95844 (diff)
[DOC] Add parantheses in call-seq for Hash#eql?
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c2
1 files changed, 1 insertions, 1 deletions
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.