From 2996832b89e435c91d9756be7045bdad981a520a Mon Sep 17 00:00:00 2001 From: Claudio Noguera Date: Tue, 26 Jan 2021 18:16:34 +0100 Subject: [PATCH] Update arc.md Fix typo, remove apostrophe --- src/std/arc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/std/arc.md b/src/std/arc.md index 566bd55eca..d36ca0802a 100644 --- a/src/std/arc.md +++ b/src/std/arc.md @@ -8,7 +8,7 @@ fn main() { use std::sync::Arc; use std::thread; -// This variable declaration is where it's value is specified. +// This variable declaration is where its value is specified. let apple = Arc::new("the same apple"); for _ in 0..10 {