summaryrefslogtreecommitdiff
path: root/class.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-18 14:16:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-18 14:16:47 +0000
commita7b1a2ecedb3d7180a164c045b90be4b2b38704d (patch)
treedeb804fec69426a11c4dd50c742ad7d9cb8ba846 /class.c
parent736668f2b00b8c0f33a55cef16a0dcf8708fda7e (diff)
* class.c, error.c, file.c, io.c, numeric.c, object.c, re.c, struct.c,
time.c: marked init_copy functions nodoc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r--class.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/class.c b/class.c
index 3842231aab..234973f402 100644
--- a/class.c
+++ b/class.c
@@ -58,6 +58,7 @@ clone_method(mid, body, tbl)
return ST_CONTINUE;
}
+/* :nodoc: */
VALUE
rb_mod_init_copy(clone, orig)
VALUE clone, orig;
@@ -85,6 +86,7 @@ rb_mod_init_copy(clone, orig)
return clone;
}
+/* :nodoc: */
VALUE
rb_class_init_copy(clone, orig)
VALUE clone, orig;