Rollup merge of #24855 - richo:thread-doc, r=alexcrichton

This commit is contained in:
Steve Klabnik 2015-04-27 10:26:19 -04:00
commit 30f41b1bd6
1 changed files with 1 additions and 2 deletions

View File

@ -115,8 +115,7 @@
//! ## Configuring threads
//!
//! A new thread can be configured before it is spawned via the `Builder` type,
//! which currently allows you to set the name, stack size, and writers for
//! `println!` and `panic!` for the child thread:
//! which currently allows you to set the name and stack size for the child thread:
//!
//! ```rust
//! # #![allow(unused_must_use)]