summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-08 02:08:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-08 02:08:57 +0000
commit86eda6244d3a9ec1d3a76e164f47917bd65ef8a2 (patch)
treef77effd107e787f6973e2979e77da8a77cfb5474 /io.c
parent965e9df38045594d126991e6a109c5746242d2ba (diff)
io.c: [DOC] IO#gets [skip ci]
* io.c (rb_io_gets_m): [DOC] fix class name and reword as "multibyte". [Fix GH-1085] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 0305386507..c546edfbbf 100644
--- a/io.c
+++ b/io.c
@@ -3292,8 +3292,8 @@ rb_io_gets(VALUE io)
* File.new("testfile").gets #=> "This is line one\n"
* $_ #=> "This is line one\n"
*
- * If StringIO contains characters more than 1 byte
- * then <code>gets(1)</code> returns character entirely:
+ * If IO contains multibyte characters byte then <code>gets(1)</code>
+ * returns character entirely:
*
* # russian characters take 2 bytes
* File.write("testfile", "\u{442 435 441 442}")