Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run cargo clippy
  • Loading branch information
thecrypticace committed Jul 2, 2025
commit 21196edb5468c0d853eb1eee466dd4dc6711050c
4 changes: 2 additions & 2 deletions crates/oxide/src/extractor/pre_processors/clojure.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pub struct Clojure;
/// can simplify this list quite a bit.
#[inline]
fn is_keyword_character(byte: u8) -> bool {
return matches!(
(matches!(
byte,
b'!' | b'#' | b'%' | b'*' | b'+' | b'-' | b'.' | b'/' | b':' | b'_'
) | byte.is_ascii_alphanumeric();
) | byte.is_ascii_alphanumeric())
}

impl PreProcessor for Clojure {
Expand Down