From 037f9166631ff3f335849b7958c64be6f6de0fed Mon Sep 17 00:00:00 2001 From: Brandon Macer <bobbysox322@gmail.com> Date: Tue, 20 Apr 2021 08:24:01 -0400 Subject: [PATCH] Update exercises/standard_library_types/arc1.rs Co-authored-by: marisa <mokou@fastmail.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 fe33803..e6c220b 100644 --- a/exercises/standard_library_types/arc1.rs +++ b/exercises/standard_library_types/arc1.rs @@ -7,7 +7,7 @@ // The second thread (offset 1), will sum 1, 9, 17, ... // The third thread (offset 2), will sum 2, 10, 18, ... // ... -// The eighth thread {offset 7}, will sum 7, 15, 23, ... +// The eighth thread (offset 7), will sum 7, 15, 23, ... // Because we are using threads, our values need to be thread-safe. Therefore, // we are using Arc. We need to make a change in each of the two TODOs.