summaryrefslogtreecommitdiff
path: root/exercises/threads
diff options
context:
space:
mode:
authorAlexandre ESSE <alexandre.esse.dev@gmail.com>2023-03-31 11:20:11 +0200
committerAlexandre ESSE <alexandre.esse.dev@gmail.com>2023-03-31 11:58:15 +0200
commit22bb662d3eb9efd081a5603640628bdeebab97b9 (patch)
treefb2a0b206db4626e4c39d3ca1cc2c643aa4052be /exercises/threads
parent362c1b0d113ad9a5bd4d1dee8086757efd060785 (diff)
fix(exercises): remove trailing spaces
Diffstat (limited to 'exercises/threads')
-rw-r--r--exercises/threads/threads1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/threads/threads1.rs b/exercises/threads/threads1.rs
index d6376db..ae124ee 100644
--- a/exercises/threads/threads1.rs
+++ b/exercises/threads/threads1.rs
@@ -30,7 +30,7 @@ fn main() {
if results.len() != 10 {
panic!("Oh no! All the spawned threads did not finish!");
}
-
+
println!();
for (i, result) in results.into_iter().enumerate() {
println!("thread {} took {}ms", i, result);