aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 20:43:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-05 20:43:47 +0000
commit4a69c35c72aaf5f55b1a7a011e45f8834e7493c5 (patch)
tree5dea6cfe65ad74de606cdadb653af4c127c37660 /io.c
parentd03528608dda5007e055a6d4c84640b690948eaf (diff)
downloadruby-4a69c35c72aaf5f55b1a7a011e45f8834e7493c5.tar.gz
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
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 255431be2d..0c7beedf23 100644
--- a/io.c
+++ b/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);