Skip to content

Commit

Permalink
[DOC] Fix syntax in Hash#eql?
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzhu2118 committed Dec 29, 2023
1 parent 4d4da09 commit 0c923fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hash.c
Expand Up @@ -3791,7 +3791,7 @@ rb_hash_equal(VALUE hash1, VALUE hash2)
* Returns +true+ if all of the following are true:
* * +object+ is a \Hash object.
* * +hash+ and +object+ have the same keys (regardless of order).
* * For each key +key+, <tt>h[key] eql? object[key]</tt>.
* * For each key +key+, <tt>h[key].eql?(object[key])</tt>.
*
* Otherwise, returns +false+.
*
Expand Down

0 comments on commit 0c923fe

Please sign in to comment.