summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-06-14 06:57:07 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2012-06-14 06:57:07 -0700
commit49026832de12c0c095e6767e4ffc2509acf0af0e (patch)
tree80e43fb318a8c4932c13bfd214a33e7d1340d31b /src
parent81afee3a6f15879990b9206941b4055142d912f9 (diff)
parentdf55efd3739bd0e252f824322d4a022c35adcc1a (diff)
downloadmruby-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')
-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(">>"); }