about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-10-06 22:29:05 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2016-10-06 22:29:05 +0200
commit13f9dae8e9c4b791778b566d44f28e830e0693ac (patch)
tree9c3f346a5f17c7e913a34f80b151e65f3f0dcd52
parent46957f05771a427545c792f69b37f8e05dcbb15d (diff)
downloadrust-13f9dae8e9c4b791778b566d44f28e830e0693ac.tar.gz
rust-13f9dae8e9c4b791778b566d44f28e830e0693ac.zip
reference: use ticks instead of quotes
-rw-r--r--src/doc/reference.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 20970ab7a35..8e5977d85d1 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3961,12 +3961,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