Use the right not equals operator.

Fix typo, "!" should be "!=".

Signed-off-by: Mark Stemm <mark.stemm@gmail.com>
This commit is contained in:
Mark Stemm 2020-11-16 14:07:09 -08:00 committed by poiana
parent 987ececa54
commit e6b0d2697f

View File

@ -130,7 +130,7 @@ end
defined_comp_operators = {
["="]=1,
["=="] = 1,
["!"] = 1,
["!="] = 1,
["<="] = 1,
[">="] = 1,
["<"] = 1,