about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/thread')
-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.