diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-06-14 06:57:07 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-06-14 06:57:07 -0700 |
| commit | 49026832de12c0c095e6767e4ffc2509acf0af0e (patch) | |
| tree | 80e43fb318a8c4932c13bfd214a33e7d1340d31b /src/parse.y | |
| parent | 81afee3a6f15879990b9206941b4055142d912f9 (diff) | |
| parent | df55efd3739bd0e252f824322d4a022c35adcc1a (diff) | |
| download | mruby-49026832de12c0c095e6767e4ffc2509acf0af0e.tar.gz mruby-49026832de12c0c095e6767e4ffc2509acf0af0e.zip | |
Merge pull request #278 from monaka/pr-fix-parser-typo-around-leq
Fix typo in parser around tLEQ
Diffstat (limited to 'src/parse.y')
| -rw-r--r-- | src/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y index 7b788e3d0..7ca0cda80 100644 --- a/src/parse.y +++ b/src/parse.y @@ -1512,7 +1512,7 @@ op : '|' { $$ = intern("|"); } | '>' { $$ = intern(">"); } | tGEQ { $$ = intern(">="); } | '<' { $$ = intern("<"); } - | tLEQ { $$ = intern(">="); } + | tLEQ { $$ = intern("<="); } | tNEQ { $$ = intern("!="); } | tLSHFT { $$ = intern("<<"); } | tRSHFT { $$ = intern(">>"); } |
