1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

RB_ENCODING_SET_INLINED: fix doxygen

Wrong parameter name. [ci skip]
This commit is contained in:
卜部昌平 2021-11-11 11:29:45 +09:00
parent a4a6e5cd2e
commit 4b3830127f

View file

@ -72,9 +72,9 @@ enum ruby_encoding_consts {
* must be capable of having inline encoding. Using this macro needs deep
* understanding of bit level object binary layout.
*
* @param[out] obj Target object to modify.
* @param[in] i Encoding in encindex format.
* @post `obj`'s encoding is `i`.
* @param[out] obj Target object to modify.
* @param[in] ecindex Encoding in encindex format.
* @post `obj`'s encoding is `encindex`.
*/
static inline void
RB_ENCODING_SET_INLINED(VALUE obj, int encindex)