Update exercises/standard_library_types/arc1.rs

Co-authored-by: Roberto Vidal <vidal.roberto.j@gmail.com>
This commit is contained in:
marisa 2021-04-21 14:49:12 +02:00 committed by GitHub
parent 24e0a6a70f
commit 870ef581b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
// arc1.rs
// In this exercise, we are given Vec of u32 called "numbers" with values ranging
// In this exercise, we are given a Vec of u32 called "numbers" with values ranging
// from 0 to 99 -- [ 0, 1, 2, ..., 98, 99 ]
// We would like to use this set of numbers within 8 different threads simultaneously.
// Each thread is going to get the sum of every eighth value, with an offset.