]> git.lizzy.rs Git - rust.git/commitdiff
thread: right now you can't actually set those printers
authorRicho Healey <richo@psych0tik.net>
Mon, 27 Apr 2015 04:17:14 +0000 (21:17 -0700)
committerRicho Healey <richo@psych0tik.net>
Mon, 27 Apr 2015 04:17:14 +0000 (21:17 -0700)
src/libstd/thread/mod.rs

index 9168a716d43801a4304287a81018c18bbb0c48ea..383726b3e8370ecce8b839ad169807b4f3c2f206 100644 (file)
 //! ## 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)]