Update mod.rs

removes trailing whitespaces, replaces TODO with FIXME
This commit is contained in:
oliver-giersch
2018-10-13 18:24:47 +02:00
committed by GitHub
parent 719a59586a
commit a52b474b52

View File

@@ -390,7 +390,7 @@ impl Builder {
unsafe { self.spawn_unchecked(f) } unsafe { self.spawn_unchecked(f) }
} }
/// TODO: Doc /// FIXME: Doc
#[unstable(feature = "thread_spawn_unchecked", issue = "0")] #[unstable(feature = "thread_spawn_unchecked", issue = "0")]
pub unsafe fn spawn_unchecked<'a, F, T>(self, f: F) -> io::Result<JoinHandle<T>> where pub unsafe fn spawn_unchecked<'a, F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
F: FnOnce() -> T, F: Send + 'a, T: Send + 'a F: FnOnce() -> T, F: Send + 'a, T: Send + 'a