From 12cc7d9e1552068e224fd484a7dcc92a5d337110 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Sat, 22 Jan 2022 16:03:23 +0100 Subject: [PATCH] Add tracking issue number for scoped_threads. --- library/std/src/thread/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index 8f16259b8701..fdf0e9faba48 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")]