]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/rust-by-example/src/std/arc.md
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / doc / rust-by-example / src / std / arc.md
index 566bd55ecad5c9c1703062e8d9007964fc38f97b..d36ca0802a965f32cfdb90c6915b93f6a8903e4a 100644 (file)
@@ -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 {