Indicate which stack size option has precedence.

This commit is contained in:
Corey Farwell 2017-08-14 15:03:31 -04:00 committed by GitHub
parent 10bd80d79b
commit 659460191d

View File

@ -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.
//!