diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-08-11 10:35:13 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-08-11 10:35:13 +0900 |
| commit | 11d5782687f3f0f4f15dd78610c4d38981e31cca (patch) | |
| tree | af1d042ecde3e5d8372b62341b4e32ebb2e350e9 /include/mruby.h | |
| parent | 35be8b252495d92ca811d76996f03c470ee33380 (diff) | |
| parent | b03f1f78e3f1bab579b21219bbecffb6eb4b7020 (diff) | |
| download | mruby-11d5782687f3f0f4f15dd78610c4d38981e31cca.tar.gz mruby-11d5782687f3f0f4f15dd78610c4d38981e31cca.zip | |
Merge pull request #4081 from seratch/fix-typo
Fix misspelling words in comments, docs
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 93fc0f010..bc6d72330 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -782,7 +782,7 @@ MRB_API struct RClass * mrb_define_module_under(mrb_state *mrb, struct RClass *o #define MRB_ARGS_REQ(n) ((mrb_aspec)((n)&0x1f) << 18) /** - * Funtion takes n optional arguments + * Function takes n optional arguments * * @param n * The number of optional arguments. @@ -790,7 +790,7 @@ MRB_API struct RClass * mrb_define_module_under(mrb_state *mrb, struct RClass *o #define MRB_ARGS_OPT(n) ((mrb_aspec)((n)&0x1f) << 13) /** - * Funtion takes n1 mandatory arguments and n2 optional arguments + * Function takes n1 mandatory arguments and n2 optional arguments * * @param n1 * The number of required arguments. |
