diff options
| author | yui-knk <[email protected]> | 2019-02-17 21:34:33 +0900 |
|---|---|---|
| committer | yui-knk <[email protected]> | 2019-02-17 21:34:33 +0900 |
| commit | f614eed13abfc0d49e4d9e334f547f6fa9179389 (patch) | |
| tree | 263c1635cc287988cc513c767c46b261db2c27b6 /include/mruby.h | |
| parent | 21933b7790d9fb7b5dfa36191ebaefcf8269d7d0 (diff) | |
| download | mruby-f614eed13abfc0d49e4d9e334f547f6fa9179389.tar.gz mruby-f614eed13abfc0d49e4d9e334f547f6fa9179389.zip | |
Fix typos
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mruby.h b/include/mruby.h index e9fd08102..9792d7482 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -489,7 +489,7 @@ MRB_API void mrb_define_const(mrb_state*, struct RClass*, const char *name, mrb_ * } * @param [mrb_state*] mrb_state* The mruby state reference. * @param [struct RClass*] RClass* A class the method will be undefined from. - * @param [const char] const char* The name of the method to be undefined. + * @param [const char*] const char* The name of the method to be undefined. */ MRB_API void mrb_undef_method(mrb_state*, struct RClass*, const char*); MRB_API void mrb_undef_method_id(mrb_state*, struct RClass*, mrb_sym); @@ -529,7 +529,7 @@ MRB_API void mrb_undef_method_id(mrb_state*, struct RClass*, mrb_sym); * } * @param [mrb_state*] mrb_state* The mruby state reference. * @param [RClass*] RClass* A class the class method will be undefined from. - * @param [constchar*] constchar* The name of the class method to be undefined. + * @param [const char*] const char* The name of the class method to be undefined. */ MRB_API void mrb_undef_class_method(mrb_state*, struct RClass*, const char*); |
