This commit is contained in:
Peter Zhu 2023-12-27 11:16:01 -05:00
Родитель 4d4da09ae4
Коммит 0c923fed7d
1 изменённых файлов: 1 добавлений и 1 удалений

2
hash.c
Просмотреть файл

@ -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+.
*