From e10c296ad781d9073b49be33cde56cc7919819e3 Mon Sep 17 00:00:00 2001 From: agentelement Date: Mon, 27 May 2024 10:50:36 -0700 Subject: [PATCH] drive-by: run rustfmt --- src/parser.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/parser.rs b/src/parser.rs index a19463e..2f916a0 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -107,8 +107,7 @@ pub fn tokenize_cla(input: &str) -> Result, 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)));