Skip to content

Commit 82829bb

Browse files
committed
chore: small lint in fuzz
1 parent f040b2a commit 82829bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fuzz/fuzz_targets/fuzz_arbitrary_bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fuzz_target!(|data: DisplayableBytes| {
1717
#[derive(Arbitrary)]
1818
pub struct DisplayableBytes<'a>(&'a [u8]);
1919

20-
impl<'a> Debug for DisplayableBytes<'a> {
20+
impl Debug for DisplayableBytes<'_> {
2121
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2222
let s = String::from_utf8_lossy(self.0);
2323
f.debug_struct("Bytes")

0 commit comments

Comments
 (0)