aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-10 03:06:14 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-10 03:06:14 +0000
commitdc4b0b41610ed85a6245e7707e0f4378485e2ed6 (patch)
tree9901fd07823e402e9ffedc2a1174beb586606562
parentbd63aca6e00eaa05157adef4399e827803150b5b (diff)
downloadruby-dc4b0b41610ed85a6245e7707e0f4378485e2ed6.tar.gz
* 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
-rw-r--r--ChangeLog4
-rw-r--r--io.c4
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 <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.
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