From 662f58f5a34dac190f454d4fbe429dec32a583ee Mon Sep 17 00:00:00 2001 From: Ruud van Asseldonk Date: Mon, 4 Aug 2014 18:01:54 +0200 Subject: [PATCH] docs: Fix typo in tutorial. --- 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 b0ce038cf5722..e4480e26cccd7 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -2196,7 +2196,7 @@ and may not be overridden: Types are sendable unless they contain references. -* `Share` - Types that are *threadsafe* +* `Share` - Types that are *threadsafe*. These are types that are safe to be used across several threads with access to a `&T` pointer. `Mutex` is an example of a *sharable* type with internal mutable data.