mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
io.c: fix rdoc [ci skip]
* io.c (Init_IO): ARGF is not a class. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d03528608d
commit
4a69c35c72
1 changed files with 1 additions and 1 deletions
2
io.c
2
io.c
|
@ -12293,7 +12293,7 @@ Init_IO(void)
|
|||
|
||||
#if 0
|
||||
/* Hack to get rdoc to regard ARGF as a class: */
|
||||
rb_cARGF = rb_define_class("ARGF", rb_cObject);
|
||||
rb_cARGF = rb_define_class("ARGF.class", rb_cObject);
|
||||
#endif
|
||||
|
||||
rb_cARGF = rb_class_new(rb_cObject);
|
||||
|
|
Loading…
Reference in a new issue