* Add missing of

* change tense of spawn

* ignored to ignoring

* add need
This commit is contained in:
Onè
2024-05-28 05:04:08 -04:00
committed by GitHub
parent bd9faa049f
commit f74fbd4800
4 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
// You _could_ pass this test by just returning `v.iter().sum()`,
// but that would defeat the purpose of the exercise.
//
// Hint: you won't be able to get the spawn threads to _borrow_
// Hint: you won't be able to get the spawned threads to _borrow_
// slices of the vector directly. You'll need to allocate new
// vectors for each half of the original vector. We'll see why
// this is necessary in the next exercise.