Skip to content

Commit 781e5f5

Browse files
authored
Merge pull request #255 from yotamofek/patch-1
Fix unterminated string lit in concurrency-primitives.md
2 parents 91343fc + a19ea4e commit 781e5f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/part-guide/concurrency-primitives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Here's an example using Tokio's [`select`](https://docs.rs/tokio/latest/tokio/ma
6767
async fn main() {
6868
select! {
6969
result = do_a_thing() => {
70-
println!("computation completed and returned {result});
70+
println!("computation completed and returned {result}");
7171
}
7272
_ = timeout() => {
7373
println!("computation timed-out");

0 commit comments

Comments
 (0)