From a070baa076d5329302f11bdce0c107666d111e57 Mon Sep 17 00:00:00 2001
From: Brandon Macer <bobbysox322@gmail.com>
Date: Tue, 20 Apr 2021 08:23:53 -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 f90ae74..fe33803 100644
--- a/exercises/standard_library_types/arc1.rs
+++ b/exercises/standard_library_types/arc1.rs
@@ -5,7 +5,7 @@
 // Each thread is going to get the sum of every eighth value, with an offset.
 // The first thread (offset 0), will sum 0, 8, 16, ...
 // The second thread (offset 1), will sum 1, 9, 17, ...
-// The third thread (offset 2}, will sum 2, 10, 18, ...
+// The third thread (offset 2), will sum 2, 10, 18, ...
 // ...
 // The eighth thread {offset 7}, will sum 7, 15, 23, ...