[DOC] stated that Array#to_s calls #inspect [ci skip]

[ruby-list:50826]
This commit is contained in:
Nobuyoshi Nakada 2019-09-29 17:28:58 +09:00
Родитель 289cad501d
Коммит e2d97cffe5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2442,7 +2442,8 @@ inspect_ary(VALUE ary, VALUE dummy, int recur)
* ary.inspect -> string
* ary.to_s -> string
*
* Creates a string representation of +self+.
* Creates a string representation of +self+, by calling #inspect
* method on each elements.
*
* [ "a", "b", "c" ].to_s #=> "[\"a\", \"b\", \"c\"]"
*/