about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-04-26 21:17:14 -0700
committerRicho Healey <richo@psych0tik.net>2015-04-26 21:17:14 -0700
commit5ed3ac99f4228e35940f61533b7185234764e8a8 (patch)
tree5de90350a68539629dc820077bcb550e7c963203 /src/libstd/thread
parent5fb0259edfbc4034cfbcf827ab91d6118b7ae848 (diff)
downloadrust-5ed3ac99f4228e35940f61533b7185234764e8a8.tar.gz
rust-5ed3ac99f4228e35940f61533b7185234764e8a8.zip
thread: right now you can't actually set those printers
Diffstat (limited to 'src/libstd/thread')
-rw-r--r--src/libstd/thread/mod.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 9168a716d43..383726b3e83 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -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)]