From 870ef581b0f549c5009cfc86951596d0f831f68b Mon Sep 17 00:00:00 2001 From: marisa <mokou@fastmail.com> Date: Wed, 21 Apr 2021 14:49:12 +0200 Subject: [PATCH] Update exercises/standard_library_types/arc1.rs Co-authored-by: Roberto Vidal <vidal.roberto.j@gmail.com> --- exercises/standard_library_types/arc1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/standard_library_types/arc1.rs b/exercises/standard_library_types/arc1.rs index d7dc93d..d167380 100644 --- a/exercises/standard_library_types/arc1.rs +++ b/exercises/standard_library_types/arc1.rs @@ -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.