]> git.lizzy.rs Git - rust.git/commitdiff
adds tracking issue number
authoroliver-giersch <oliver.giersch@googlemail.com>
Tue, 16 Oct 2018 20:42:14 +0000 (22:42 +0200)
committerGitHub <noreply@github.com>
Tue, 16 Oct 2018 20:42:14 +0000 (22:42 +0200)
src/libstd/thread/mod.rs

index dc2d12bf2c4f1d80a9ed6e7dffd2565cb98dd066..e5a28c27cf058fea0b94d0c128935f96a8019962 100644 (file)
@@ -451,7 +451,7 @@ pub fn spawn<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
     /// [`Builder::spawn`]: ../../std/thread/struct.Builder.html#method.spawn
     /// [`io::Result`]: ../../std/io/type.Result.html
     /// [`JoinHandle`]: ../../std/thread/struct.JoinHandle.html
-    #[unstable(feature = "thread_spawn_unchecked", issue = "0")]
+    #[unstable(feature = "thread_spawn_unchecked", issue = "55132")]
     pub unsafe fn spawn_unchecked<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
         F: FnOnce() -> T, F: Send, T: Send
     {