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: