summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-21 04:42:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-21 04:42:19 +0000
commit28e50d05d3c8a15bf55604fff865295072916e30 (patch)
treeee7be0db4c21dca34cd55af8339bcd43170e56c6
parentfa24a0c5ad4f32501ad6f58a87471d0d48398639 (diff)
io.c: [DOC]
* io.c (rb_f_select): [DOC] adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index c5e21ebc5e..b6c67c4e6c 100644
--- a/io.c
+++ b/io.c
@@ -8559,7 +8559,7 @@ rb_io_advise(int argc, VALUE *argv, VALUE io)
* rp, wp = IO.pipe
* mesg = "ping "
* 100.times {
- * # IO.select follows IO#read. Not the best way to use IO.select.
+ * # IO.select follows IO#read. Not the best way to use IO.select.
* rs, ws, = IO.select([rp], [wp])
* if r = rs[0]
* ret = r.read(5)