about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-08-17 10:44:07 -0400
committerGitHub <noreply@github.com>2017-08-17 10:44:07 -0400
commita4387d54dca2160544fd0775c52ad942794e4f5f (patch)
treee2b41f2f275778f0fffbe05def082906a47c410e /src/libstd/thread
parentdd39ecf368a3cdb937e129f36a2a342d0c9358f0 (diff)
parentc7104be1a37daa2f7ec114913247dc93524fd48e (diff)
downloadrust-a4387d54dca2160544fd0775c52ad942794e4f5f.tar.gz
rust-a4387d54dca2160544fd0775c52ad942794e4f5f.zip
Rollup merge of #43891 - Fourchaux:master, r=steveklabnik
Fix typos & us spellings

Fixing some typos and non en-US spellings.

(Update of PR https://github.com/rust-lang/rust/pull/42812 )
Diffstat (limited to 'src/libstd/thread')
-rw-r--r--src/libstd/thread/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 3cd9cf7727c..83feb595bce 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -560,7 +560,7 @@ pub fn current() -> Thread {
 /// implementing low-level shared resources or synchronization primitives.
 ///
 /// However programmers will usually prefer to use, [`channel`]s, [`Condvar`]s,
-/// [`Mutex`]es or [`join`] for their synchronisation routines, as they avoid
+/// [`Mutex`]es or [`join`] for their synchronization routines, as they avoid
 /// thinking about thread scheduling.
 ///
 /// Note that [`channel`]s for example are implemented using this primitive.