ruby-changes:30822
From: kazu <ko1@a...>
Date: Tue, 10 Sep 2013 12:06:22 +0900 (JST)
Subject: [ruby-changes:30822] kazu:r42901 (trunk): * io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc.
kazu 2013-09-10 12:06:14 +0900 (Tue, 10 Sep 2013) New Revision: 42901 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42901 Log: * io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc. Modified files: trunk/ChangeLog trunk/io.c Index: ChangeLog =================================================================== --- ChangeLog (revision 42900) +++ ChangeLog (revision 42901) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Sep 10 12:05:04 2013 Kazuhiro NISHIYAMA <zn@m...> + + * io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc. + Tue Sep 10 10:08:00 2013 Kazuhiro NISHIYAMA <zn@m...> * NEWS: Update RubyGems note. Index: io.c =================================================================== --- io.c (revision 42900) +++ io.c (revision 42901) @@ -6732,9 +6732,9 @@ rb_io_printf(int argc, VALUE *argv, VALU https://github.com/ruby/ruby/blob/trunk/io.c#L6732 * printf(string [, obj ... ]) -> nil * * Equivalent to: - * io.write(sprintf(string, obj, ...) + * io.write(sprintf(string, obj, ...)) * or - * $stdout.write(sprintf(string, obj, ...) + * $stdout.write(sprintf(string, obj, ...)) */ static VALUE -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/