summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMasaki Muranaka <[email protected]>2012-06-14 17:38:47 +0900
committerMasaki Muranaka <[email protected]>2012-06-14 17:38:47 +0900
commitdf55efd3739bd0e252f824322d4a022c35adcc1a (patch)
tree109bb38efcae2154f844c8d59457927a68fdf7a5
parent73d7000b8f5c3f7d2cb12e03b0a431ec3636fe21 (diff)
downloadmruby-df55efd3739bd0e252f824322d4a022c35adcc1a.tar.gz
mruby-df55efd3739bd0e252f824322d4a022c35adcc1a.zip
Fix typo in parser around tLEQ
-rw-r--r--src/parse.y2
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(">>"); }