summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorJonathan Bailey <jbailey@mozilla.com>2014-05-22 11:40:52 -0700
committerJonathan Bailey <jbailey@mozilla.com>2014-05-22 13:46:52 -0700
commit12240e5b9e99ec24176f8c6fb50045a8e456cee1 (patch)
tree04e80542d1df809d95d1a46808cee00683af2ea7 /src/doc/tutorial.md
parent3c9f2a5d0a22828dae30ad5926049fb321897eab (diff)
downloadrust-12240e5b9e99ec24176f8c6fb50045a8e456cee1.tar.gz
rust-12240e5b9e99ec24176f8c6fb50045a8e456cee1.zip
Fixed incorrect module path
extra::arc -> sync::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 0b076dcde5d..fc775d789fe 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