From abcccea9e2022da76740aeafa35307a48ffb91c0 Mon Sep 17 00:00:00 2001 From: "Derek Chiang (Enchi Jiang)" Date: Sat, 10 May 2014 21:38:39 -0400 Subject: [PATCH] Remove reference to MutexArc --- 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 9b9153fe57946..dd586ba77d647 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -2155,7 +2155,7 @@ unless they contain references. * `Share` - Types that are *threadsafe* These are types that are safe to be used across several threads with access to -a `&T` pointer. `MutexArc` is an example of a *sharable* type with internal mutable data. +a `&T` pointer. `Mutex` is an example of a *sharable* type with internal mutable data. * `'static` - Non-borrowed types. These are types that do not contain any data whose lifetime is bound to