about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTang Chenglong <ideami@outlook.com>2017-02-24 22:01:26 +0800
committerGitHub <noreply@github.com>2017-02-24 22:01:26 +0800
commit6aed7734484dbc9b9f39fff602a04c835db651cb (patch)
tree80b9da883d717a53b267aa17225cdb29f277ae3e
parent9f082d21113a51221d6ee17ff81215e4b325a7be (diff)
downloadrust-6aed7734484dbc9b9f39fff602a04c835db651cb.tar.gz
rust-6aed7734484dbc9b9f39fff602a04c835db651cb.zip
Fix a typo
-rw-r--r--src/doc/book/src/concurrency.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/src/concurrency.md b/src/doc/book/src/concurrency.md
index a64178c26f2..afed379fe47 100644
--- a/src/doc/book/src/concurrency.md
+++ b/src/doc/book/src/concurrency.md
@@ -36,7 +36,7 @@ down the channel and to the other thread. Therefore, we'd ensure that `Send` was
 implemented for that type.
 
 In the opposite way, if we were wrapping a library with [FFI][ffi] that isn't
-threadsafe, we wouldn't want to implement `Send`, and so the compiler will help
+thread-safe, we wouldn't want to implement `Send`, and so the compiler will help
 us enforce that it can't leave the current thread.
 
 [ffi]: ffi.html