aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-12-21 16:32:40 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2021-09-10 20:00:06 +0900
commit9ba9dbf168c8be042a11baad90a2b7bf8428a478 (patch)
tree2e8083132fca929cf3e626bf0aa2f8533692394f /eval.c
parent1f66d8a77b4d7efcff778ba82284b7b651b53104 (diff)
downloadruby-9ba9dbf168c8be042a11baad90a2b7bf8428a478.tar.gz
include/ruby/internal/module.h: add doxygen
Must not be a bad idea to improve documents. [ci skip] In fact many functions declared in the header file are already documented more or less. They were just copy & pasted, with applying some style updates.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/eval.c b/eval.c
index 885e1ae782..ef98d7192e 100644
--- a/eval.c
+++ b/eval.c
@@ -1713,12 +1713,6 @@ rb_obj_call_init_kw(VALUE obj, int argc, const VALUE *argv, int kw_splat)
rb_funcallv_kw(obj, idInitialize, argc, argv, kw_splat);
}
-/*!
- * Extend the object with the module.
- *
- * Same as \c Module\#extend_object.
- * \ingroup class
- */
void
rb_extend_object(VALUE obj, VALUE module)
{