Rollup merge of #37008 - tshepang:quotes, r=steveklabnik

reference: use ticks instead of quotes
This commit is contained in:
Guillaume Gomez 2016-10-07 11:45:05 +02:00 committed by GitHub
commit 3e6307644a

View File

@ -3966,12 +3966,12 @@ implementation in the returned type `U`.
## The `Send` trait
The `Send` trait indicates that a value of this type is safe to send from one
The `Send` trait indicates that a value of this type is safe to send from one
thread to another.
## The 'Sync' trait
## The `Sync` trait
The 'Sync' trait indicates that a value of this type is safe to share between
The `Sync` trait indicates that a value of this type is safe to share between
multiple threads.
# Memory model