From 12240e5b9e99ec24176f8c6fb50045a8e456cee1 Mon Sep 17 00:00:00 2001 From: Jonathan Bailey Date: Thu, 22 May 2014 11:40:52 -0700 Subject: [PATCH] Fixed incorrect module path extra::arc -> sync::arc --- src/doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index 0b076dcde5db1..fc775d789fe2a 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