thread: right now you can't actually set those printers

This commit is contained in:
Richo Healey 2015-04-26 21:17:14 -07:00
parent 5fb0259edf
commit 5ed3ac99f4
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)]