Skip to content

Commit

Permalink
drive-by: run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentElement committed May 27, 2024
1 parent 8876597 commit e10c296
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ pub fn tokenize_cla(input: &str) -> Result<Vec<CToken>, ParseError> {
} else if first_char && c.is_alphabetic() {
first_char = false;
name.push(c);
}
else if !first_char && c.is_alphanumeric() {
} else if !first_char && c.is_alphanumeric() {
name.push(c);
} else {
return Err(InvalidCharacter((i, c)));
Expand Down

0 comments on commit e10c296

Please sign in to comment.