Skip to content

Commit

Permalink
weird clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Aug 22, 2024
1 parent 47c21a2 commit 23f32ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encodings/fsst/src/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ where
for string in iter {
match string {
None => builder.push_null(),
Some(s) => builder.push_value(&compressor.compress(s)),
Some(s) => builder.push_value(compressor.compress(s).as_ref()),
}
}

Expand Down

0 comments on commit 23f32ce

Please sign in to comment.