diff --git a/io.c b/io.c index 8bd5977df3..9f10d8f8f5 100644 --- a/io.c +++ b/io.c @@ -7181,11 +7181,12 @@ io_puts_ary(VALUE ary, VALUE out, int recur) * call-seq: * ios.puts(obj, ...) -> nil * - * Writes the given objects to ios as with - * IO#print. Writes a record separator (typically a - * newline) after any that do not already end with a newline sequence. + * Writes the given object(s) to ios as with IO#print. + * Writes a newline after any that do not already end + * with a newline sequence. + * * If called with an array argument, writes each element on a new line. - * If called without arguments, outputs a single record separator. + * If called without arguments, outputs a single newline. * * $stdout.puts("this", "is", "a", "test") * diff --git a/version.h b/version.h index 9d7ffcabb8..170c415471 100644 --- a/version.h +++ b/version.h @@ -1,6 +1,6 @@ #define RUBY_VERSION "2.4.0" #define RUBY_RELEASE_DATE "2017-03-13" -#define RUBY_PATCHLEVEL 96 +#define RUBY_PATCHLEVEL 97 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3