From dc4b0b41610ed85a6245e7707e0f4378485e2ed6 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 10 Sep 2013 03:06:14 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ io.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index fb54b94992..ee8e605fad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 10 12:05:04 2013 Kazuhiro NISHIYAMA + + * io.c (rb_f_printf): [DOC] add missing parenthesis in rdoc. + Tue Sep 10 10:08:00 2013 Kazuhiro NISHIYAMA * NEWS: Update RubyGems note. diff --git a/io.c b/io.c index 8d2ed8d06c..ec0715fcea 100644 --- a/io.c +++ b/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