about summary refs log tree commit diff
path: root/src/libstd/thread/mod.rs
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-08-14 15:03:31 -0400
committerGitHub <noreply@github.com>2017-08-14 15:03:31 -0400
commit659460191d47c81a2334bfee189ce022bd3f445b (patch)
treea11e98d8ef2d3a94d03cae16756affc431478f7d /src/libstd/thread/mod.rs
parent10bd80d79b006b1a81a66e1a10e333eaa38b068c (diff)
downloadrust-659460191d47c81a2334bfee189ce022bd3f445b.tar.gz
rust-659460191d47c81a2334bfee189ce022bd3f445b.zip
Indicate which stack size option has precedence.
Diffstat (limited to 'src/libstd/thread/mod.rs')
-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 13965478aee..3cd9cf7727c 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -131,7 +131,7 @@
 //!
 //! * Build the thread with [`Builder`] and pass the desired stack size to [`Builder::stack_size`].
 //! * Set the `RUST_MIN_STACK` environment variable to an integer representing the desired stack
-//!   size (in bytes).
+//!   size (in bytes). Note that setting [`Builder::stack_size`] will override this.
 //!
 //! Note that the stack size of the main thread is *not* determined by Rust.
 //!