about summary refs log tree commit diff
path: root/src/libstd/thread/mod.rs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2017-05-11 06:27:01 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2017-05-11 06:27:01 +0200
commite42875ce6dfc0102b00e6725f403c2f5a1b59fce (patch)
tree95e5dec39b3edafc095142428d80536ae7c34fbf /src/libstd/thread/mod.rs
parent25a161765fb90f2bfc78bda8fef944048e72bd26 (diff)
downloadrust-e42875ce6dfc0102b00e6725f403c2f5a1b59fce.tar.gz
rust-e42875ce6dfc0102b00e6725f403c2f5a1b59fce.zip
doc: break into 2 sentences
Diffstat (limited to 'src/libstd/thread/mod.rs')
-rw-r--r--src/libstd/thread/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 4432f898e04..4ddd92f1592 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -245,8 +245,8 @@ impl Builder {
     /// configuration methods can be chained.
     ///
     /// If the [`stack_size`] field is not specified, the stack size
-    /// will be the `RUST_MIN_STACK` environment variable, if it is
-    /// not specified either, a sensible default size will be set (2MB as
+    /// will be the `RUST_MIN_STACK` environment variable.  If it is
+    /// not specified either, a sensible default will be set (2MB as
     /// of the writting of this doc).
     ///
     /// # Examples