From 24e0a6a70f400fa2caf3d4be78f4eb99f73cbd5f Mon Sep 17 00:00:00 2001
From: Brandon Macer <bobbysox322@gmail.com>
Date: Tue, 20 Apr 2021 08:24:07 -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 e6c220b..d7dc93d 100644
--- a/exercises/standard_library_types/arc1.rs
+++ b/exercises/standard_library_types/arc1.rs
@@ -14,7 +14,7 @@
 
 
 // Make this code compile by filling in a value for `shared_numbers` where the
-// first TODO comment is and create an initial binding for `child_numbers`
+// first TODO comment is, and create an initial binding for `child_numbers`
 // where the second TODO comment is. Try not to create any copies of the `numbers` Vec!
 // Execute `rustlings hint arc1` for hints :)