about summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorRuud van Asseldonk <dev@veniogames.com>2014-08-04 18:01:54 +0200
committerRuud van Asseldonk <dev@veniogames.com>2014-08-04 18:01:54 +0200
commit662f58f5a34dac190f454d4fbe429dec32a583ee (patch)
tree8db50cb6b990bb78b00310d19b840a747fdbfc9b /src/doc/tutorial.md
parent795f6ae829ab1bfd72394a5da9096e2717ec0f62 (diff)
downloadrust-662f58f5a34dac190f454d4fbe429dec32a583ee.tar.gz
rust-662f58f5a34dac190f454d4fbe429dec32a583ee.zip
docs: Fix typo in tutorial.
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.