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

include/ruby/internal/anyargs.h: fix typo

Just applied spell checker. [ci skip]
This commit is contained in:
卜部昌平 2021-04-26 13:57:36 +09:00
parent cf1424d62a
commit 618fa0a67b
Notes: git 2021-09-10 20:01:44 +09:00

View file

@ -338,7 +338,7 @@ RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *)
/** /**
* @brief Defines ::rb_mKerbel \#mid. * @brief Defines ::rb_mKerbel \#mid.
* @see ::rb_define_gobal_function * @see ::rb_define_global_function
* @param mid Name of the defining method. * @param mid Name of the defining method.
* @param func Implementation of ::rb_mKernel \#mid. * @param func Implementation of ::rb_mKernel \#mid.
* @param arity Arity of ::rb_mKernel \#mid. * @param arity Arity of ::rb_mKernel \#mid.
@ -349,7 +349,7 @@ RBIMPL_ANYARGS_DECL(rb_define_method, VALUE, const char *)
/** /**
* This macro is to properly cast a function parameter of *_define_method * This macro is to properly cast a function parameter of *_define_method
* family. It has been around since 1.x era so you can maximize backwards * family. It has been around since 1.x era so you can maximise backwards
* compatibility by using it. * compatibility by using it.
* *
* ```CXX * ```CXX