Skip to content

Commit

Permalink
Ignore an issue by clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheVeryDarkness committed Oct 12, 2024
1 parent 2ed8839 commit 7bf3217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ impl Read for LazyWriter {
if let Some(num) = self.0.next() {
let s = format!("{} ", num);
let len = s.len();
buf.write(s.as_bytes())?;
let _ = buf.write(s.as_bytes())?;
Ok(len)
} else {
Ok(0)
Expand Down

0 comments on commit 7bf3217

Please sign in to comment.