about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorFelix Raimundo <felix.raimundo@tweag.io>2017-05-09 16:57:03 +0200
committerFelix Raimundo <felix.raimundo@tweag.io>2017-05-09 16:57:03 +0200
commit656efcd3ab029491fd0bd01f3b596516884cabe1 (patch)
tree6ca58394d1ae1cb9a74aff02ecfe9025024e7086 /src/libstd
parent9db31206f597444258a46220f39fde13a76453e2 (diff)
downloadrust-656efcd3ab029491fd0bd01f3b596516884cabe1.tar.gz
rust-656efcd3ab029491fd0bd01f3b596516884cabe1.zip
Address review comments
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/thread/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 19adf3e3c3f..dd8892d6660 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -400,7 +400,7 @@ impl Builder {
 ///
 /// # Examples
 ///
-/// Simple thread creation.
+/// Creating a thread.
 ///
 /// ```
 /// use std::thread;
@@ -413,7 +413,7 @@ impl Builder {
 /// ```
 ///
 /// As mentionned in the module documentation, threads are usualy made to
-/// communicate using [`channel`s][`channels`], here is how it usually looks.
+/// communicate using [`channels`], here is how it usually looks.
 ///
 /// This example also shows how to use `move`, in order to give ownership
 /// of values to a thread.