Improvements from clippy

This commit is contained in:
Barry Pederson
2025-07-01 20:37:00 -07:00
parent 3fac9def78
commit d9da12a6de
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ fn main() -> std::io::Result<()> {
request.write_to_stream(&mut stream)?;
let response = read_string(&mut stream)?;
println!("Response: {}", response);
println!("Response: {response}");
Ok(())
}