Skip to content

Commit a52b474

Browse files
Update mod.rs
removes trailing whitespaces, replaces TODO with FIXME
1 parent 719a595 commit a52b474

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libstd/thread/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ impl Builder {
389389
{
390390
unsafe { self.spawn_unchecked(f) }
391391
}
392-
393-
/// TODO: Doc
392+
393+
/// FIXME: Doc
394394
#[unstable(feature = "thread_spawn_unchecked", issue = "0")]
395395
pub unsafe fn spawn_unchecked<'a, F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
396396
F: FnOnce() -> T, F: Send + 'a, T: Send + 'a
@@ -425,7 +425,7 @@ impl Builder {
425425
native: Some(imp::Thread::new(stack_size, Box::new(main))?),
426426
thread: my_thread,
427427
packet: Packet(my_packet),
428-
}))
428+
}))
429429
}
430430
}
431431

0 commit comments

Comments
 (0)