Skip to content

Commit b1bbe94

Browse files
committed
Minor convention change
1 parent dc5eb11 commit b1bbe94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BooleanExpressionParser/Tokeniser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public IEnumerable<Token> Tokenise()
3636
"NAND" => new NandOperatorToken(),
3737
"NOR" => new NorOperatorToken(),
3838
"XNOR" => new XnorOperatorToken(),
39-
"=>" or "IMPLIES" => new ImplicationOperatorToken(),
39+
"IMPLIES" or "=>" => new ImplicationOperatorToken(),
4040
_ => new VariableToken(token)
4141
};
4242
}

0 commit comments

Comments
 (0)