1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* io.c (rb_io_readbyte): rdoc updated. [ruby-core:18617]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-09-16 09:36:06 +00:00
parent 428661eccf
commit 73c8f02384
2 changed files with 3 additions and 1 deletions

View file

@ -5,6 +5,8 @@ Tue Sep 16 18:28:52 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* io.c (rb_io_readlines, rb_f_gets): ditto.
* io.c (rb_io_readbyte): rdoc updated. [ruby-core:18617]
Tue Sep 16 11:55:16 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* string.c (rb_str_each_codepoint): add new methods, #codepoints

2
io.c
View file

@ -2748,7 +2748,7 @@ rb_io_getbyte(VALUE io)
* call-seq:
* ios.readbyte => fixnum
*
* Reads a character as with <code>IO#getc</code>, but raises an
* Reads a byte as with <code>IO#getbyte</code>, but raises an
* <code>EOFError</code> on end of file.
*/