diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index f8f641171131..12d9f955bb76 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -1407,7 +1407,7 @@ impl JoinHandle { /// /// This might return `false` for a brief moment after the thread's main /// function has returned, but before the thread itself has stopped running. - #[unstable(feature = "thread_is_running", issue = "none")] + #[unstable(feature = "thread_is_running", issue = "90470")] pub fn is_running(&self) -> bool { Arc::strong_count(&self.0.packet.0) > 1 }