We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db3abec + 44a558d commit 9952947Copy full SHA for 9952947
std/src/thread/mod.rs
@@ -412,7 +412,6 @@ impl Builder {
412
/// # Examples
413
///
414
/// ```
415
- /// #![feature(thread_spawn_unchecked)]
416
/// use std::thread;
417
418
/// let builder = thread::Builder::new();
@@ -433,7 +432,7 @@ impl Builder {
433
432
434
435
/// [`io::Result`]: crate::io::Result
436
- #[unstable(feature = "thread_spawn_unchecked", issue = "55132")]
+ #[stable(feature = "thread_spawn_unchecked", since = "CURRENT_RUSTC_VERSION")]
437
pub unsafe fn spawn_unchecked<F, T>(self, f: F) -> io::Result<JoinHandle<T>>
438
where
439
F: FnOnce() -> T,
0 commit comments