From bf9ffeed3139d8496ce6d6190b81aa19fff60d65 Mon Sep 17 00:00:00 2001 From: stomar Date: Sun, 29 Oct 2017 20:57:29 +0000 Subject: [PATCH] io.c: docs for IO#write * io.c: [DOC] fix example and language in IO#write docs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io.c b/io.c index 8a5d6ab246..aeae864511 100644 --- a/io.c +++ b/io.c @@ -1659,11 +1659,11 @@ io_writev(int argc, VALUE *argv, VALUE io) * ios.write(string, ...) -> integer * * Writes the given strings to ios. The stream must be opened - * for writing. If each argument is not a string, they will be converted + * for writing. Arguments that are not a string will be converted * to a string using to_s. Returns the number of bytes * written in total. * - * count = $stdout.write("This is", "a test\n") + * count = $stdout.write("This is", " a test\n") * puts "That was #{count} bytes of data" * * produces: