summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2021-06-04 23:53:32 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2021-09-10 20:00:06 +0900
commitce54282b75761b97ea961ea5fe19cef244f82f97 (patch)
tree8dda3f851fa29f01381a62e11ab7e34d22a8ad1f /array.c
parentf9a00f9ef2dedaad4fe09c327603d63d580fa32e (diff)
include/ruby/internal/intern/array.h: add doxygen
Must not be a bad idea to improve documents. [ci skip]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4815
Diffstat (limited to 'array.c')
-rw-r--r--array.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/array.c b/array.c
index 50a61db876..66dc5253a0 100644
--- a/array.c
+++ b/array.c
@@ -2234,14 +2234,6 @@ rb_ary_set_len(VALUE ary, long len)
ARY_SET_LEN(ary, len);
}
-/*!
- * expands or shrinks \a ary to \a len elements.
- * expanded region will be filled with Qnil.
- * \param ary an array
- * \param len new size
- * \return \a ary
- * \post the size of \a ary is \a len.
- */
VALUE
rb_ary_resize(VALUE ary, long len)
{