about summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-08-05 15:36:23 +0000
committerbors <bors@rust-lang.org>2014-08-05 15:36:23 +0000
commitce83301f8c64f77c876ecfed65962b7dc407f093 (patch)
tree029b81ce763c524076f830b3b9c39c0e52b55d85 /src/doc/tutorial.md
parentfd02916f0eac754ce63addc22fe2bd2bd1147393 (diff)
parent662f58f5a34dac190f454d4fbe429dec32a583ee (diff)
downloadrust-ce83301f8c64f77c876ecfed65962b7dc407f093.tar.gz
rust-ce83301f8c64f77c876ecfed65962b7dc407f093.zip
auto merge of #16246 : ruud-v-a/rust/patch-1, r=brson
Diffstat (limited to 'src/doc/tutorial.md')
-rw-r--r--src/doc/tutorial.md2
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.