Skip to content

Commit

Permalink
Merge pull request rust-lang#1083 from sebug/patch-1
Browse files Browse the repository at this point in the history
Removing unnecessary semicolon
  • Loading branch information
steveklabnik authored Dec 28, 2017
2 parents 3de9a19 + ae4c690 commit 194eb8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion second-edition/src/ch20-01-single-threaded.md
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ fn handle_connection(mut stream: TcpStream) {
stream.flush().unwrap();
} else {
// some other request
};
}
}
```

Expand Down

0 comments on commit 194eb8d

Please sign in to comment.