diff options
| author | bors <bors@rust-lang.org> | 2017-02-26 05:22:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2017-02-26 05:22:08 +0000 |
| commit | 808dbcc9eb4c33b40c3ce8a8dec03e4d91f0ec12 (patch) | |
| tree | 223f01a8f97f582b5c91a943db2b9c5310dc5aed /src | |
| parent | 1572bf104dbf65d58bd6b889fa46229c9b92d6f9 (diff) | |
| parent | 6aed7734484dbc9b9f39fff602a04c835db651cb (diff) | |
| download | rust-808dbcc9eb4c33b40c3ce8a8dec03e4d91f0ec12.tar.gz rust-808dbcc9eb4c33b40c3ce8a8dec03e4d91f0ec12.zip | |
Auto merge of #40078 - tclfs:patch-3, r=GuillaumeGomez
Fix a typo
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/book/src/concurrency.md | 2 |
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 |
