summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler/core/parse.y
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2020-12-17 16:22:31 +1000
committerJohn Bampton <[email protected]>2020-12-17 16:22:31 +1000
commitd21d5993b9452bdb7813e8c6b897241bbc72b758 (patch)
treef6f9cda5a692c02e5eae8b9c80de7e40fd933241 /mrbgems/mruby-compiler/core/parse.y
parentfbe5033f80cda70d4e835b7c99748df116d3be4c (diff)
downloadmruby-d21d5993b9452bdb7813e8c6b897241bbc72b758.tar.gz
mruby-d21d5993b9452bdb7813e8c6b897241bbc72b758.zip
feat(CI): add a GitHub Action to check spelling
- Fix spelling - Run only on pull request - Using https://github.com/client9/misspell
Diffstat (limited to 'mrbgems/mruby-compiler/core/parse.y')
-rw-r--r--mrbgems/mruby-compiler/core/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y
index 62fff304e..16e1cef32 100644
--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -6826,7 +6826,7 @@ str_dump(mrb_state *mrb, const char *str, int len)
int ai = mrb_gc_arena_save(mrb);
mrb_value s;
# if INT_MAX > MRB_INT_MAX / 4
- /* check maximum length with "\xNN" charactor */
+ /* check maximum length with "\xNN" character */
if (len > MRB_INT_MAX / 4) {
len = MRB_INT_MAX / 4;
}