about summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-05-23 00:31:27 -0700
committerbors <bors@rust-lang.org>2014-05-23 00:31:27 -0700
commit33c3eddd111bd708940f2e2fd84180cfae80e856 (patch)
tree919d01f548640ddb2f65d3cd97df20ddd8a4762b /src/doc/tutorial.md
parent02117dd1bc10c65ca1f56fd81996a573c88ccfd5 (diff)
parent12240e5b9e99ec24176f8c6fb50045a8e456cee1 (diff)
downloadrust-33c3eddd111bd708940f2e2fd84180cfae80e856.tar.gz
rust-33c3eddd111bd708940f2e2fd84180cfae80e856.zip
auto merge of #14362 : zecozephyr/rust/docfixes, r=cmr
extra::arc -> alloc::arc
Diffstat (limited to 'src/doc/tutorial.md')
-rw-r--r--src/doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index 7a0a1662742..da78869d9fa 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -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