diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-02-13 16:38:02 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-13 16:38:02 +0900 |
| commit | d04c651405189e132bd19985435d4c1c5fa1762b (patch) | |
| tree | 1a3dd21c1c0f4a2898ae8f308e1cd516f4d9e717 /mrbgems/mruby-compiler/core | |
| parent | 9a9c95986a2bb5d647f7a610c04987cd2b9397f4 (diff) | |
| parent | be40e9c783363b45a14ba70a18157385814e8b3e (diff) | |
| download | mruby-d04c651405189e132bd19985435d4c1c5fa1762b.tar.gz mruby-d04c651405189e132bd19985435d4c1c5fa1762b.zip | |
Merge pull request #5342 from jbampton/fix-spelling
chore: fix spelling
Diffstat (limited to 'mrbgems/mruby-compiler/core')
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-compiler/core/y.tab.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index 56b9bb38a..1a07cc14b 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -1450,7 +1450,7 @@ heredoc_end(parser_state *p) %token <nd> tSTRING tSTRING_PART tSTRING_MID %token <nd> tNTH_REF tBACK_REF %token <num> tREGEXP_END -%token <num> tNUMPARAM "numbered paraemeter" +%token <num> tNUMPARAM "numbered parameter" %type <nd> singleton string string_fragment string_rep string_interp xstring regexp %type <nd> literal numeric cpath symbol defn_head defs_head diff --git a/mrbgems/mruby-compiler/core/y.tab.c b/mrbgems/mruby-compiler/core/y.tab.c index 0ba1c8d7f..c6b56d60d 100644 --- a/mrbgems/mruby-compiler/core/y.tab.c +++ b/mrbgems/mruby-compiler/core/y.tab.c @@ -2085,7 +2085,7 @@ static const char *const yytname[] = "\"constant\"", "\"class variable\"", "\"label\"", "\"integer literal\"", "\"float literal\"", "\"character literal\"", "tXSTRING", "tREGEXP", "tSTRING", "tSTRING_PART", "tSTRING_MID", "tNTH_REF", "tBACK_REF", - "tREGEXP_END", "\"numbered paraemeter\"", "\"unary plus\"", + "tREGEXP_END", "\"numbered parameter\"", "\"unary plus\"", "\"unary minus\"", "\"<=>\"", "\"==\"", "\"===\"", "\"!=\"", "\">=\"", "\"<=\"", "\"&&\"", "\"||\"", "\"=~\"", "\"!~\"", "\"..\"", "\"...\"", "tBDOT2", "tBDOT3", "tAREF", "tASET", "\"<<\"", "\">>\"", "\"::\"", |
