[DOC] FIx typo in description of Hash#hash (regardless or/of order)

This commit is contained in:
Dorian Marié (perso) 2023-09-02 18:46:33 +02:00 коммит произвёл GitHub
Родитель ef4dab6983
Коммит 3887b45f47
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3772,7 +3772,7 @@ hash_i(VALUE key, VALUE val, VALUE arg)
* Returns the Integer hash-code for the hash.
*
* Two \Hash objects have the same hash-code if their content is the same
* (regardless or order):
* (regardless of order):
* h1 = {foo: 0, bar: 1, baz: 2}
* h2 = {baz: 2, bar: 1, foo: 0}
* h2.hash == h1.hash # => true