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

Fix a typo [ci skip]

This commit is contained in:
Kazuhiro NISHIYAMA 2021-05-16 00:06:38 +09:00
parent 3e1d32a233
commit 8560f34246
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

2
io.c
View file

@ -13413,7 +13413,7 @@ set_LAST_READ_LINE(VALUE val, ID _x, VALUE *_y)
* - #readchar:: Returns the next character read from +self+;
* same as #getc, but raises an exception on end-of-file.
* - #readline:: Returns the next line read from +self+;
* same as #getline, but raises an exceptin of end-of-file.
* same as #getline, but raises an exception of end-of-file.
* - #readlines:: Returns an array of all lines read read from +self+.
* - #readpartial:: Returns up to the given number of bytes from +self+.
*