From 86db7a1cb87bc7cde49df2bac82d91ccdc514509 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 13 Apr 2023 13:28:47 +0900 Subject: [DOC] Fix typos --- io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index d0af749231..fb822f0f58 100644 --- a/io.c +++ b/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. -- cgit v1.2.3