Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeedev committed Mar 8, 2024
1 parent 25a0f61 commit 5704168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rain/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub enum TokenType {
Not, // !
NotCondition, // !=
Or, // ||
OrBitwise, // |
Stick, // |
And, // &&
AndBitwise, // &

Expand Down Expand Up @@ -204,7 +204,7 @@ impl<'a> Lexer<'a> {
self.bump();
TokenType::Or
},
_ => TokenType::OrBitwise
_ => TokenType::Stick
},

'!' => match self.peek() {
Expand Down

0 comments on commit 5704168

Please sign in to comment.