summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-06 01:34:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-06 01:34:21 +0000
commit2ed4f52d1afe641c5d0b7d3ddd153bedbc178425 (patch)
tree7fed113e5fb2fe51a1095f1f712e9b6062459e95
parentc1068780acd0139d3e14a2fa62761c10d3ff7394 (diff)
downloadruby-2ed4f52d1afe641c5d0b7d3ddd153bedbc178425.tar.gz
ruby-2ed4f52d1afe641c5d0b7d3ddd153bedbc178425.tar.xz
ruby-2ed4f52d1afe641c5d0b7d3ddd153bedbc178425.zip
* io.c: fixed rdoc, a patch from Nobuhiro IMAI at [ruby-core:25433].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--io.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a3911cb8b..b8ea5b6d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 6 10:34:19 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * io.c: fixed rdoc, a patch from Nobuhiro IMAI at [ruby-core:25433].
+
Sun Sep 6 05:19:09 2009 NARUSE, Yui <naruse@ruby-lang.org>
* io.c: Add rdoc for ARGF.
diff --git a/io.c b/io.c
index e17b9eaf8..8ce11234e 100644
--- a/io.c
+++ b/io.c
@@ -8976,9 +8976,9 @@ argf_getc(VALUE argf)
*
* ARGF.getbyte #=> 102
* ARGF.getbyte #=> 111
+ * ARGF.getbyte #=> 111
* ARGF.getbyte #=> 10
* ARGF.getbyte #=> nil
- * ARGF.getbyte #=> nil
*/
static VALUE
argf_getbyte(VALUE argf)