summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2015-04-28 23:06:00 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-10 15:20:25 -0400
commit5b041fedb433e50737144fe3a3cd780f097914c5 (patch)
tree8e099913c4b6c5082aec5c52d757808b11304422 /src/libstd/thread
parentb84f018bb48b3ce99d18155b4d8620e04ef058bd (diff)
downloadrust-5b041fedb433e50737144fe3a3cd780f097914c5.tar.gz
rust-5b041fedb433e50737144fe3a3cd780f097914c5.zip
Fix punctuation placement in doc-comment
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 93ca0898024..02e7bacf8a5 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