lua: add not-equals to the possible constraint verbs

This commit is contained in:
George Kiagiadakis
2021-07-02 20:22:37 +03:00
parent 0c51cf9a7b
commit ec397aaaca

View File

@@ -15,6 +15,7 @@ local function Constraint (spec)
local verb = spec[2]
local verbs = {
["="] = "equals",
["!"] = "not-equals",
["c"] = "in-list",
["~"] = "in-range",
["#"] = "matches",