From 55180710195bec9788c05c1b66c0796ac6dbf037 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 b7122944ced..454d5cf9ddf 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