Skip to content

Commit

Permalink
fix: shift right display macro (#1656)
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Scott <[email protected]>
  • Loading branch information
kyscott18 committed Jul 1, 2024
1 parent d821752 commit 06798cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solang-parser/src/lexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ impl<'input> fmt::Display for Token<'input> {
Token::CloseBracket => write!(f, "]"),
Token::BitwiseNot => write!(f, "~"),
Token::Question => write!(f, "?"),
Token::ShiftRightAssign => write!(f, "<<="),
Token::ShiftRight => write!(f, "<<"),
Token::ShiftRightAssign => write!(f, ">>="),
Token::ShiftRight => write!(f, ">>"),
Token::Less => write!(f, "<"),
Token::LessEqual => write!(f, "<="),
Token::Bool => write!(f, "bool"),
Expand Down

0 comments on commit 06798cd

Please sign in to comment.