mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
remove the !
syntax for the not
This commit is contained in:
parent
73df873f44
commit
519d6b2bf3
2 changed files with 5 additions and 7 deletions
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue