about summary refs log tree commit diff
path: root/src/libstd/thread/mod.rs
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-05-12 18:57:29 -0600
committerGitHub <noreply@github.com>2017-05-12 18:57:29 -0600
commit605d727bb39281da7c51051dd560eb0dd0bfce8e (patch)
tree055cb93d0607f50e335d3ee7d4444b770bc96b5d /src/libstd/thread/mod.rs
parent1f7266205fa7f2c7665e2dafeb7d973fb2f5b00b (diff)
parente42875ce6dfc0102b00e6725f403c2f5a1b59fce (diff)
downloadrust-605d727bb39281da7c51051dd560eb0dd0bfce8e.tar.gz
rust-605d727bb39281da7c51051dd560eb0dd0bfce8e.zip
Rollup merge of #41896 - tshepang:too-long, r=steveklabnik
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 230c60baf8b..200368be275 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -210,8 +210,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