aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-01-27 02:05:02 -0800
committerBruce Hill <bruce@bruce-hill.com>2019-01-27 02:05:02 -0800
commitb77b953fa3c0f289f91d798a6872e040b6f40f64 (patch)
tree327b1a7e6ec2d66e56d68f9aa009f0fd0b6965f0
parente6725247636f4245d53efd4f0638678612efd604 (diff)
Removed namespace colliding of `* is not *` (using the isinstance
version, not the != version)
-rw-r--r--lib/core/operators.nom2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/operators.nom b/lib/core/operators.nom
index 4bdb5bc..dc4745f 100644
--- a/lib/core/operators.nom
+++ b/lib/core/operators.nom
@@ -15,7 +15,7 @@ test:
($x <= $y) compiles to "(\($x as lua expr) <= \($y as lua expr))"
($x >= $y) compiles to "(\($x as lua expr) >= \($y as lua expr))"
($a == $b) compiles to "(\($a as lua expr) == \($b as lua expr))"
-[$a isn't $b, $a is not $b, $a not= $b, $a != $b] all compile to
+[$a not= $b, $a != $b] all compile to
"(\($a as lua expr) ~= \($b as lua expr))"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~