Skip to content

Commit

Permalink
Merge pull request #153 from sh4ka/patch-1
Browse files Browse the repository at this point in the history
Update lib.rs binding in the solution
  • Loading branch information
hdoordt authored Oct 14, 2024
2 parents c6f457a + c0aebd3 commit 8fedc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/08_futures/03_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ where
{
loop {
let (mut socket, _) = listener.accept().await.unwrap();
let (mut reader, mut writer) = socket.split();
let (_reader, mut writer) = socket.split();
writer
.write_all(format!("{}", reply).as_bytes())
.await
Expand Down

0 comments on commit 8fedc3c

Please sign in to comment.