]> git.lizzy.rs Git - rust.git/commitdiff
docs: Fix typo in tutorial.
authorRuud van Asseldonk <dev@veniogames.com>
Mon, 4 Aug 2014 16:01:54 +0000 (18:01 +0200)
committerRuud van Asseldonk <dev@veniogames.com>
Mon, 4 Aug 2014 16:01:54 +0000 (18:01 +0200)
src/doc/tutorial.md

index b0ce038cf572204dd2c9d1c8f59e1969092544ab..e4480e26cccd7d1d8c254e18b6b099cbf8d5606d 100644 (file)
@@ -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.