From 960f8006d2393fca0fb1a680f5216f859c2d5598 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Tue, 28 Apr 2015 23:06:00 -0400 Subject: [PATCH] Fix punctuation placement in doc-comment --- src/libstd/thread/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index ce531fb13812c..b0b88f5598602 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