about summary refs log tree commit diff
path: root/library/std/src/thread
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2022-01-22 16:03:23 +0100
committerMara Bos <m-ou.se@m-ou.se>2022-01-22 16:03:23 +0100
commit12cc7d9e1552068e224fd484a7dcc92a5d337110 (patch)
treea2f6bc7f022074e7fe0ba8404a13956792fa13cf /library/std/src/thread
parente572c5a3d53e2ca608aa38d8d1a07a0e91c524a9 (diff)
downloadrust-12cc7d9e1552068e224fd484a7dcc92a5d337110.tar.gz
rust-12cc7d9e1552068e224fd484a7dcc92a5d337110.zip
Add tracking issue number for scoped_threads.
Diffstat (limited to 'library/std/src/thread')
-rw-r--r--library/std/src/thread/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs
index 8f16259b870..fdf0e9faba4 100644
--- a/library/std/src/thread/mod.rs
+++ b/library/std/src/thread/mod.rs
@@ -180,10 +180,10 @@ use crate::time::Duration;
 #[macro_use]
 mod local;
 
-#[unstable(feature = "scoped_threads", issue = "none")]
+#[unstable(feature = "scoped_threads", issue = "93203")]
 mod scoped;
 
-#[unstable(feature = "scoped_threads", issue = "none")]
+#[unstable(feature = "scoped_threads", issue = "93203")]
 pub use scoped::{scope, Scope, ScopedJoinHandle};
 
 #[stable(feature = "rust1", since = "1.0.0")]