about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-04-29 15:45:49 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-04-29 15:45:49 -0700
commitb9b1312f53f54ce7686ea0c4dc3b91894336e523 (patch)
tree844055a727dff0de924c09d68e175c656aace17c /src/libstd
parent7510bfebb66afbd916460a1fe0fb6b5d431840b3 (diff)
parent960f8006d2393fca0fb1a680f5216f859c2d5598 (diff)
downloadrust-b9b1312f53f54ce7686ea0c4dc3b91894336e523.tar.gz
rust-b9b1312f53f54ce7686ea0c4dc3b91894336e523.zip
rollup merge of #24926: frewsxcv/patch-20
Diffstat (limited to 'src/libstd')
-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 ae480380f95..bcc70c2b816 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -263,7 +263,7 @@ impl Builder {
     ///
     /// The child thread may outlive the parent (unless the parent thread
     /// is the main thread; the whole process is terminated when the main
-    /// thread finishes.) The join handle can be used to block on
+    /// thread finishes). The join handle can be used to block on
     /// termination of the child thread, including recovering its panics.
     ///
     /// # Errors