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

io.c: workaround for YARD doc

* io.c (rb_f_select): [DOC] workaround for YARD doc.  [Fix GH-799]
  [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49054 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-12-29 01:37:29 +00:00
parent 76ec09062a
commit 7fd45e90cb
2 changed files with 4 additions and 5 deletions

View file

@ -1,4 +1,6 @@
Mon Dec 29 10:37:06 2014 Thiago Lewin <thiago_lewin@yahoo.com.br>
Mon Dec 29 10:37:27 2014 Thiago Lewin <thiago_lewin@yahoo.com.br>
* io.c (rb_f_select): [DOC] workaround for YARD doc. [Fix GH-799]
* process.c (proc_detach): [DOC] fix missing closing parenthesis.
[Fix GH-799]

5
io.c
View file

@ -8671,10 +8671,7 @@ rb_io_advise(int argc, VALUE *argv, VALUE io)
/*
* call-seq:
* IO.select(read_array
* [, write_array
* [, error_array
* [, timeout]]]) -> array or nil
* IO.select(read_array [, write_array [, error_array [, timeout]]]) -> array or nil
*
* Calls select(2) system call.
* It monitors given arrays of <code>IO</code> objects, waits one or more