Skip to content

Commit

Permalink
Remove reference to MutexArc
Browse files Browse the repository at this point in the history
  • Loading branch information
derekchiang authored and alexcrichton committed May 13, 2014
1 parent 85e34b2 commit 5518071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/tutorial.md
Expand Up @@ -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<T>` 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
Expand Down

0 comments on commit 5518071

Please sign in to comment.