diff options
| author | Jonathan Bailey <jbailey@mozilla.com> | 2014-05-22 11:40:52 -0700 |
|---|---|---|
| committer | Jonathan Bailey <jbailey@mozilla.com> | 2014-05-22 13:46:52 -0700 |
| commit | 12240e5b9e99ec24176f8c6fb50045a8e456cee1 (patch) | |
| tree | 04e80542d1df809d95d1a46808cee00683af2ea7 /src/doc/tutorial.md | |
| parent | 3c9f2a5d0a22828dae30ad5926049fb321897eab (diff) | |
| download | rust-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.md | 2 |
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 |
