Fix failing test

This commit is contained in:
Jordan Pittman 2025-06-30 12:23:56 -04:00
parent 05b65d59b5
commit 98158fd372

View File

@ -18,7 +18,7 @@ pub struct Clojure;
fn is_keyword_character(byte: u8) -> bool {
return matches!(
byte,
b'!' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
b'!' | b'#' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
) | byte.is_ascii_alphanumeric();
}