aboutsummaryrefslogtreecommitdiff
path: root/lib/operators.nom
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2017-10-13 19:43:55 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2017-10-13 19:43:55 -0700
commit9dee9dbbd8708ac2fb00c2240c7e0059e8691eb2 (patch)
tree0021fa598c2f973ce119f5fb5b8b357c930cc735 /lib/operators.nom
parentbccfe9d8e12ba024c745cd533f73987439c76499 (diff)
Made symbols group with each other, instead of *every* one being alone.
Diffstat (limited to 'lib/operators.nom')
-rw-r--r--lib/operators.nom2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/operators.nom b/lib/operators.nom
index 09bdbcd..c254861 100644
--- a/lib/operators.nom
+++ b/lib/operators.nom
@@ -90,7 +90,7 @@ lua block ".."
# Chained compairsions (e.g. x < y <= z) are defined up to 3 operands
lua block ".."
|local max_operands = 3;
- |for _,chainers in ipairs({{"<","< ="},{">","> ="}}) do;
+ |for _,chainers in ipairs({{"<","<="},{">",">="}}) do;
| local function recurse(chainers, chain)
# The 1-op versions are already more efficiently defined, and a 0-op version doesnt make sense
| if #chain >= 2 then;