diff options
| author | bors <bors@rust-lang.org> | 2014-08-05 15:36:23 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-08-05 15:36:23 +0000 |
| commit | ce83301f8c64f77c876ecfed65962b7dc407f093 (patch) | |
| tree | 029b81ce763c524076f830b3b9c39c0e52b55d85 | |
| parent | fd02916f0eac754ce63addc22fe2bd2bd1147393 (diff) | |
| parent | 662f58f5a34dac190f454d4fbe429dec32a583ee (diff) | |
| download | rust-ce83301f8c64f77c876ecfed65962b7dc407f093.tar.gz rust-ce83301f8c64f77c876ecfed65962b7dc407f093.zip | |
auto merge of #16246 : ruud-v-a/rust/patch-1, r=brson
| -rw-r--r-- | src/doc/tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index b0ce038cf57..e4480e26ccc 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<T>` is an example of a *sharable* type with internal mutable data. |
