From c28229f3fc4c292e384af92811734b2875c11a9c Mon Sep 17 00:00:00 2001 From: naruse Date: Sun, 12 Mar 2017 16:30:08 +0000 Subject: [PATCH] merge revision(s) 57780: [Backport #12975] docs for IO#print * io.c: [DOC] split documentation for IO#print into smaller paragraphs, delete duplicate sentence, fix call-seq. Based on a patch by Dario Daic. [ruby-core:78291] [Bug #12975] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_4@57929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 22 ++++++++++++---------- version.h | 2 +- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/io.c b/io.c index 691bca1643..accde8dc76 100644 --- a/io.c +++ b/io.c @@ -7006,18 +7006,20 @@ rb_f_printf(int argc, VALUE *argv) /* * call-seq: - * ios.print() -> nil + * ios.print -> nil * ios.print(obj, ...) -> nil * - * Writes the given object(s) to ios. The stream must be - * opened for writing. If the output field separator ($,) - * is not nil, it will be inserted between each object. - * If the output record separator ($\\) - * is not nil, it will be appended to the output. If no - * arguments are given, prints $_. Objects that aren't - * strings will be converted by calling their to_s method. - * With no argument, prints the contents of the variable $_. - * Returns nil. + * Writes the given object(s) to ios. Returns nil. + * + * The stream must be opened for writing. + * Each given object that isn't a string will be converted by calling + * its to_s method. + * When called without arguments, prints the contents of $_. + * + * If the output field separator ($,) is not nil, + * it is inserted between objects. + * If the output record separator ($\\) is not nil, + * it is appended to the output. * * $stdout.print("This is ", 100, " percent.\n") * diff --git a/version.h b/version.h index 35aa3d3bde..3c163ca3dd 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 84 +#define RUBY_PATCHLEVEL 85 #define RUBY_RELEASE_YEAR 2017 #define RUBY_RELEASE_MONTH 3