mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bd63aca6e0
commit
dc4b0b4161
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Sep 10 12:05:04 2013 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc.
|
||||
|
||||
Tue Sep 10 10:08:00 2013 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* NEWS: Update RubyGems note.
|
||||
|
|
4
io.c
4
io.c
|
@ -6732,9 +6732,9 @@ rb_io_printf(int argc, VALUE *argv, VALUE out)
|
|||
* 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
|
||||
|
|
Loading…
Reference in a new issue