summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-05-16 00:06:38 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2021-05-16 00:07:22 +0900
commit8560f3424606fda9fd286e59abbb4d4bdf8ef99d (patch)
treeaf2d7264020fd22e979b989a56934e6715a7cedc
parent3e1d32a233c84dac9e8aaf12f5bc21573a2477cb (diff)
Fix a typo [ci skip]
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 32b367fc2f..1051149d9d 100644
--- a/io.c
+++ b/io.c
@@ -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+.
*