summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorKazuhiro Sera <[email protected]>2018-08-11 00:28:32 +0900
committerKazuhiro Sera <[email protected]>2018-08-11 00:28:32 +0900
commitb03f1f78e3f1bab579b21219bbecffb6eb4b7020 (patch)
treeaf1d042ecde3e5d8372b62341b4e32ebb2e350e9 /include
parent35be8b252495d92ca811d76996f03c470ee33380 (diff)
downloadmruby-b03f1f78e3f1bab579b21219bbecffb6eb4b7020.tar.gz
mruby-b03f1f78e3f1bab579b21219bbecffb6eb4b7020.zip
Fix misspelling words in comments
Diffstat (limited to 'include')
-rw-r--r--include/mruby.h4
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.