about 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
committerCorey Farwell <coreyf@rwell.org>2015-04-28 23:06:00 -0400
commit960f8006d2393fca0fb1a680f5216f859c2d5598 (patch)
tree8390943c0cef86719ca74b9fb1424381cafd68f0 /src/libstd/thread
parentc4b23aec4c5ddf32df1e0ba3cc23212327cd8b1f (diff)
downloadrust-960f8006d2393fca0fb1a680f5216f859c2d5598.tar.gz
rust-960f8006d2393fca0fb1a680f5216f859c2d5598.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 ce531fb1381..b0b88f55986 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