summaryrefslogtreecommitdiff
path: root/exercises/threads/threads1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/threads/threads1.rs')
-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);