about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-04-27 10:26:19 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-04-27 10:26:19 -0400
commit30f41b1bd672a2ceb6ed60895448fef1722ffc5d (patch)
treecfd981deab96c777128dc77a11bf84d97acfda67 /src/libstd
parent5a6d9cc1591cd12c5284903eef0f4b0f100ee954 (diff)
parent5ed3ac99f4228e35940f61533b7185234764e8a8 (diff)
downloadrust-30f41b1bd672a2ceb6ed60895448fef1722ffc5d.tar.gz
rust-30f41b1bd672a2ceb6ed60895448fef1722ffc5d.zip
Rollup merge of #24855 - richo:thread-doc, r=alexcrichton
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 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)]