remove the ! syntax for the not

This commit is contained in:
Irevoire 2021-11-09 16:47:54 +01:00
parent 73df873f44
commit 519d6b2bf3
No known key found for this signature in database
GPG key ID: 7A6A970C96104F1B
2 changed files with 5 additions and 7 deletions

View file

@ -70,7 +70,7 @@ fn is_value_component(c: char) -> bool {
}
fn is_syntax_component(c: char) -> bool {
c.is_whitespace() || ['(', ')', '=', '<', '>', '!'].contains(&c)
c.is_whitespace() || ['(', ')', '=', '<', '>'].contains(&c)
}
#[cfg(test)]