about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2019-05-04 23:48:57 +0900
committerTaiki Endo <te316e89@gmail.com>2019-05-04 23:48:57 +0900
commitccb9dac5ed65341bf8d9ce01a83b9aad02f42526 (patch)
tree8148c29c67cf4418b404cfc43f913179e399939c /src/libstd/thread
parentef9a876f8297e26859469b004047e0946ed10565 (diff)
downloadrust-ccb9dac5ed65341bf8d9ce01a83b9aad02f42526.tar.gz
rust-ccb9dac5ed65341bf8d9ce01a83b9aad02f42526.zip
Fix intra-doc link resolution failure on re-exporting libstd
Diffstat (limited to 'src/libstd/thread')
-rw-r--r--src/libstd/thread/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index fce28ffd9c3..35de4f4008b 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -443,6 +443,7 @@ impl Builder {
     /// [`Builder::spawn`]: ../../std/thread/struct.Builder.html#method.spawn
     /// [`io::Result`]: ../../std/io/type.Result.html
     /// [`JoinHandle`]: ../../std/thread/struct.JoinHandle.html
+    /// [`JoinHandle::join`]: ../../std/thread/struct.JoinHandle.html#method.join
     #[unstable(feature = "thread_spawn_unchecked", issue = "55132")]
     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