We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 719a595 commit a52b474Copy full SHA for a52b474
src/libstd/thread/mod.rs
@@ -389,8 +389,8 @@ impl Builder {
389
{
390
unsafe { self.spawn_unchecked(f) }
391
}
392
-
393
- /// TODO: Doc
+
+ /// FIXME: Doc
394
#[unstable(feature = "thread_spawn_unchecked", issue = "0")]
395
pub unsafe fn spawn_unchecked<'a, F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
396
F: FnOnce() -> T, F: Send + 'a, T: Send + 'a
@@ -425,7 +425,7 @@ impl Builder {
425
native: Some(imp::Thread::new(stack_size, Box::new(main))?),
426
thread: my_thread,
427
packet: Packet(my_packet),
428
- }))
+ }))
429
430
431
0 commit comments