diff options
| author | Bastien Orivel <eijebong@bananium.fr> | 2017-08-11 00:16:18 +0200 |
|---|---|---|
| committer | Bastien Orivel <eijebong@bananium.fr> | 2017-08-11 00:16:18 +0200 |
| commit | 47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de (patch) | |
| tree | d322ab0b4256ce1b79dc63e2fab5e70a774c93c6 /src/libstd/thread/mod.rs | |
| parent | 2ac5f7d249e29ee48737359e0e6dd9e59701a568 (diff) | |
| download | rust-47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de.tar.gz rust-47cb3c5bc28e1bb2ac2d2efb7796ceb17b4ab7de.zip | |
Fix some typos
Diffstat (limited to 'src/libstd/thread/mod.rs')
| -rw-r--r-- | src/libstd/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index cbd019c2c0e..80eb8ba93f7 100644 --- a/src/libstd/thread/mod.rs +++ b/src/libstd/thread/mod.rs @@ -531,7 +531,7 @@ pub fn current() -> Thread { /// /// However programmers will usually prefer to use, [`channel`]s, [`Condvar`]s, /// [`Mutex`]es or [`join`] for their synchronisation routines, as they avoid -/// thinking about thread schedulling. +/// thinking about thread scheduling. /// /// Note that [`channel`]s for example are implemented using this primitive. /// Indeed when you call `send` or `recv`, which are blocking, they will yield |
