Skip to content

Commit 98158fd

Browse files
committed
Fix failing test
1 parent 05b65d5 commit 98158fd

File tree

1 file changed

+1
-1
lines changed
  • crates/oxide/src/extractor/pre_processors

1 file changed

+1
-1
lines changed

crates/oxide/src/extractor/pre_processors/clojure.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct Clojure;
1818
fn is_keyword_character(byte: u8) -> bool {
1919
return matches!(
2020
byte,
21-
b'!' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
21+
b'!' | b'#' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
2222
) | byte.is_ascii_alphanumeric();
2323
}
2424

0 commit comments

Comments
 (0)