about summary refs log tree commit diff
path: root/src/libstd/thread.rs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-02-23 01:56:52 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-02-23 01:56:52 +0200
commitfa4cb49b0475232d7e7eed2b77cdd017b762db8c (patch)
tree4e0754f0370be28fbde500e2a6f1925ae54679da /src/libstd/thread.rs
parent0cea2b7c3c32ea5028227f85431f8af7636ef558 (diff)
downloadrust-fa4cb49b0475232d7e7eed2b77cdd017b762db8c.tar.gz
rust-fa4cb49b0475232d7e7eed2b77cdd017b762db8c.zip
doc: I learnt from review that this is now implemented
Diffstat (limited to 'src/libstd/thread.rs')
-rw-r--r--src/libstd/thread.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstd/thread.rs b/src/libstd/thread.rs
index fb7386f18e7..ce1ba3a4364 100644
--- a/src/libstd/thread.rs
+++ b/src/libstd/thread.rs
@@ -92,10 +92,6 @@
 //! return the result produced by the thread.  A handle to the thread
 //! itself is available via the `thread` method of the join guard.
 //!
-//! (Note: eventually, the `scoped` constructor will allow the parent and child
-//! threads to data that lives on the parent thread's stack, but some language
-//! changes are needed before this is possible.)
-//!
 //! ## Configuring threads
 //!
 //! A new thread can be configured before it is spawned via the `Builder` type,