Fix typo on Integer.try_convert [ci skip]

This commit is contained in:
Matheus Richard 2021-12-14 13:46:08 -03:00 коммит произвёл Nobuyoshi Nakada
Родитель 637c3cfc5d
Коммит b32b755ea2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -237,7 +237,7 @@ end
# Otherwise if +object+ responds to <tt>:to_int</tt>,
# calls <tt>object.to_int</tt> and returns the result.
#
# Returns +nil+ if +object+ does not respond to <tt>:to_ary</tt>
# Returns +nil+ if +object+ does not respond to <tt>:to_int</tt>
#
# Raises an exception unless <tt>object.to_int</tt> returns an \Integer object.
#