Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Borcherding committed Nov 29, 2024
1 parent 699c075 commit 899410d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/encoding/match_generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl SuffixStore {
let s2 = suffix[2] as usize;
let s3 = suffix[3] as usize;
let s4 = suffix[4] as usize;
let index = s0 ^ (s1 << 2) ^ (s2 << 4) ^(s3 << 6) ^ (s4 << 8);
let index = s0 ^ (s1 << 2) ^ (s2 << 4) ^ (s3 << 6) ^ (s4 << 8);
index % self.slots.len()
}
}
Expand Down

0 comments on commit 899410d

Please sign in to comment.