Skip to content

Commit 6bec6f9

Browse files
committed
threads1: Fix typos in description
1 parent 930a0ea commit 6bec6f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

exercises/20_threads/threads1.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// This program spawns multiple threads that each run for at least 250ms, and
2-
// each thread returns how much time they took to complete. The program should
1+
// This program spawns multiple threads that each runs for at least 250ms, and
2+
// each thread returns how much time it took to complete. The program should
33
// wait until all the spawned threads have finished and should collect their
44
// return values into a vector.
55

solutions/20_threads/threads1.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// This program spawns multiple threads that each run for at least 250ms, and
2-
// each thread returns how much time they took to complete. The program should
1+
// This program spawns multiple threads that each runs for at least 250ms, and
2+
// each thread returns how much time it took to complete. The program should
33
// wait until all the spawned threads have finished and should collect their
44
// return values into a vector.
55

0 commit comments

Comments
 (0)