]> git.lizzy.rs Git - rust.git/commitdiff
Fix link
authorFelix Raimundo <felix.raimundo@tweag.io>
Tue, 9 May 2017 17:02:43 +0000 (19:02 +0200)
committerFelix Raimundo <felix.raimundo@tweag.io>
Tue, 9 May 2017 17:02:43 +0000 (19:02 +0200)
src/libstd/thread/mod.rs

index 4d931682676e197bd4c60b3c15732cc02a3fcf87..9a7239d297c4d373b2d8bf5cab20068e6b566332 100644 (file)
@@ -594,21 +594,21 @@ pub fn park() {
     *guard = false;
 }
 
-/// Use [park_timeout].
+/// Use [`park_timeout`].
 ///
 /// Blocks unless or until the current thread's token is made available or
 /// the specified duration has been reached (may wake spuriously).
 ///
-/// The semantics of this function are equivalent to [`park`][park] except
+/// The semantics of this function are equivalent to [`park`] except
 /// that the thread will be blocked for roughly no longer than `dur`. This
 /// method should not be used for precise timing due to anomalies such as
 /// preemption or platform differences that may not cause the maximum
 /// amount of time waited to be precisely `ms` long.
 ///
-/// See the [park documentation][park] for more detail.
+/// See the [park documentation][`park`] for more detail.
 ///
-/// [park_timeout]: fn.park_timeout.html
-/// [park]: ../../std/thread/fn.park.html
+/// [`park_timeout`]: fn.park_timeout.html
+/// [`park`]: ../../std/thread/fn.park.html
 #[stable(feature = "rust1", since = "1.0.0")]
 #[rustc_deprecated(since = "1.6.0", reason = "replaced by `std::thread::park_timeout`")]
 pub fn park_timeout_ms(ms: u32) {