diff options
| author | Masaki Muranaka <[email protected]> | 2012-06-14 17:38:47 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2012-06-14 17:38:47 +0900 |
| commit | df55efd3739bd0e252f824322d4a022c35adcc1a (patch) | |
| tree | 109bb38efcae2154f844c8d59457927a68fdf7a5 | |
| parent | 73d7000b8f5c3f7d2cb12e03b0a431ec3636fe21 (diff) | |
| download | mruby-df55efd3739bd0e252f824322d4a022c35adcc1a.tar.gz mruby-df55efd3739bd0e252f824322d4a022c35adcc1a.zip | |
Fix typo in parser around tLEQ
| -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(">>"); } |
