diff options
Diffstat (limited to 'library/std/src/thread')
| -rw-r--r-- | library/std/src/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index f8f64117113..12d9f955bb7 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -1407,7 +1407,7 @@ impl<T> JoinHandle<T> { /// /// 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 } |
