diff --git a/src/doc/trpl/rust-inside-other-languages.md b/src/doc/trpl/rust-inside-other-languages.md index 8dd2e365aa8..47e1df37dff 100644 --- a/src/doc/trpl/rust-inside-other-languages.md +++ b/src/doc/trpl/rust-inside-other-languages.md @@ -119,7 +119,6 @@ fn process() { println!("Thread finished with count={}", h.join().map_err(|_| "Could not join a thread!").unwrap()); } - println!("done!"); } ```