This commit is contained in:
Nobuyoshi Nakada 2023-04-13 13:28:47 +09:00
Родитель 3785049c9f
Коммит 86db7a1cb8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 3 добавлений и 3 удалений

6
io.c
Просмотреть файл

@ -11654,9 +11654,9 @@ pipe_pair_close(VALUE rw)
* IO.pipe(**opts) -> [read_io, write_io]
* IO.pipe(enc, **opts) -> [read_io, write_io]
* IO.pipe(ext_enc, int_enc, **opts) -> [read_io, write_io]
* IO.pipe(**opts) {|read_io, write_io] ...} -> object
* IO.pipe(enc, **opts) {|read_io, write_io] ...} -> object
* IO.pipe(ext_enc, int_enc, **opts) {|read_io, write_io] ...} -> object
* IO.pipe(**opts) {|read_io, write_io| ...} -> object
* IO.pipe(enc, **opts) {|read_io, write_io| ...} -> object
* IO.pipe(ext_enc, int_enc, **opts) {|read_io, write_io| ...} -> object
*
* Creates a pair of pipe endpoints, +read_io+ and +write_io+,
* connected to each other.