Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerollmops committed Nov 12, 2024
1 parent 05bd606 commit ffe186c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roaring/src/bitmap/store/bitmap_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
match self.kind {
ErrorKind::Cardinality { expected, actual } => {
write!(f, "Expected cardinality was {} but was {}", expected, actual)
write!(f, "Expected cardinality was {expected} but was {actual}")
}
}
}
Expand Down

0 comments on commit ffe186c

Please sign in to comment.