summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-04-26 21:17:14 -0700
committerSteve Klabnik <steve@steveklabnik.com>2015-05-10 15:19:13 -0400
commitbe613a1b035fa8d580f724b073a3bd6cdff662c8 (patch)
tree5e907940ba722034a14862631b71a45748cc7a30 /src/libstd
parent83b70c2a6637f782a4cceb9fe34a111128cac473 (diff)
downloadrust-be613a1b035fa8d580f724b073a3bd6cdff662c8.tar.gz
rust-be613a1b035fa8d580f724b073a3bd6cdff662c8.zip
thread: right now you can't actually set those printers
Diffstat (limited to 'src/libstd')
-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 c65377e238f..93ca0898024 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)]