Skip to content

Commit

Permalink
style: add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Jul 2, 2024
1 parent 2d55a6b commit 541e0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser-ng/src/tokenizer/tokens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Token {
Token::NEWLINE(_) => "newline",
Token::WHITESPACE(_) => "whitespace",
Token::UNKNOWN(_) => "unknown",
Token::INVALID_UTF8(_) => unreachable!()
Token::INVALID_UTF8(_) => unreachable!(),
}
}
}

0 comments on commit 541e0a1

Please sign in to comment.