]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/tutorial.md
auto merge of #14362 : zecozephyr/rust/docfixes, r=cmr
[rust.git] / src / doc / tutorial.md
index 7a0a166274282aea77e039c1437105e64257aad7..da78869d9fa84a69856a8272d151865537a861a7 100644 (file)
@@ -1710,7 +1710,7 @@ it's possible to use *dynamic* mutability via types like `std::cell::Cell` where
 via dynamic checks and can fail at runtime.
 
 The `Rc` and `Gc` types are not sendable, so they cannot be used to share memory between tasks. Safe
-immutable and mutable shared memory is provided by the `extra::arc` module.
+immutable and mutable shared memory is provided by the `sync::arc` module.
 
 # Closures