about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2017-11-02 19:09:31 +0200
committerSebastian Dröge <sebastian@centricular.com>2017-11-02 19:09:31 +0200
commitb86bba594023591f4d6c795cf4da115640c3a918 (patch)
tree76badb29660b0c00f68a9143f051f0dbfe39fb54 /src/libstd/thread
parenta12f5119101060909de1938d7d4a96854cc02780 (diff)
downloadrust-b86bba594023591f4d6c795cf4da115640c3a918.tar.gz
rust-b86bba594023591f4d6c795cf4da115640c3a918.zip
Make join a link to the function's documentation
Diffstat (limited to 'src/libstd/thread')
-rw-r--r--src/libstd/thread/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 97220ad993b..ee49bf796b8 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -31,7 +31,7 @@
 //! from, or alternatively be resumed with
 //! [`resume_unwind`](../../std/panic/fn.resume_unwind.html). If the panic
 //! is not caught the thread will exit, but the panic may optionally be
-//! detected from a different thread with `join`. If the main thread panics
+//! detected from a different thread with [`join`]. If the main thread panics
 //! without the panic being caught, the application will exit with a
 //! non-zero exit code.
 //!