diff --git a/src/string.rs b/src/string.rs index 887023e..6f11bcc 100644 --- a/src/string.rs +++ b/src/string.rs @@ -7,7 +7,7 @@ pub fn is_number(c: u8) -> bool { } pub fn is_separator(c: u8) -> bool { - return !is_alpha(c) && !is_number(c) && c != b'\0'; + !is_alpha(c) && !is_number(c) && c != b'\0' } pub fn to_lower(c: u8) -> u8 {