Fix some typos

This commit is contained in:
Bastien Orivel
2017-08-11 00:16:18 +02:00
parent 2ac5f7d249
commit 47cb3c5bc2
21 changed files with 24 additions and 24 deletions

View File

@@ -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