]> git.lizzy.rs Git - rust.git/commitdiff
Fix punctuation placement in doc-comment
authorCorey Farwell <coreyf@rwell.org>
Wed, 29 Apr 2015 03:06:00 +0000 (23:06 -0400)
committerCorey Farwell <coreyf@rwell.org>
Wed, 29 Apr 2015 03:06:00 +0000 (23:06 -0400)
src/libstd/thread/mod.rs

index ce531fb13812c30db599fef9a42b10e8f3a8aad0..b0b88f5598602de6991e79cd83d6083c310531c2 100644 (file)
@@ -263,7 +263,7 @@ pub fn stack_size(mut self, size: usize) -> 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