We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 91343fc + a19ea4e commit 781e5f5Copy full SHA for 781e5f5
src/part-guide/concurrency-primitives.md
@@ -67,7 +67,7 @@ Here's an example using Tokio's [`select`](https://docs.rs/tokio/latest/tokio/ma
67
async fn main() {
68
select! {
69
result = do_a_thing() => {
70
- println!("computation completed and returned {result});
+ println!("computation completed and returned {result}");
71
}
72
_ = timeout() => {
73
println!("computation timed-out");
0 commit comments