about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sync/mpsc/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index e82f40ff96f..de553556207 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -1249,8 +1249,8 @@ impl<T> Receiver<T> {
     ///
     /// # Panics
     ///
-    /// There is currently a known issue with this function ([`#39364`]) that
-    /// causes `recv_timeout` to panic unexpectedly with the following example:
+    /// There is currently a known issue with this `recv_timeout` (see [`#39364`])
+    /// that causes it to panic unexpectedly with the following example:
     ///
     /// ```no_run
     /// use std::sync::mpsc::channel;