about summary refs log tree commit diff
path: root/library/std/src/sync/mpsc
diff options
context:
space:
mode:
authorCamelid <camelidcamel@gmail.com>2020-11-07 12:22:24 -0800
committerCamelid <camelidcamel@gmail.com>2020-11-07 12:50:57 -0800
commit8258cf285fabb281d85d9c880d816e54fbf62d37 (patch)
treee0a10712e62633f7c2d366e5716308706367d067 /library/std/src/sync/mpsc
parentb2d115f6db5172c961dfeb50de15f35784dbc7c9 (diff)
Convert a bunch of intra-doc links
Diffstat (limited to 'library/std/src/sync/mpsc')
-rw-r--r--library/std/src/sync/mpsc/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/std/src/sync/mpsc/mod.rs b/library/std/src/sync/mpsc/mod.rs
index dc13c9433f1..db0777ee9f0 100644
--- a/library/std/src/sync/mpsc/mod.rs
+++ b/library/std/src/sync/mpsc/mod.rs
@@ -535,9 +535,6 @@ unsafe impl<T: Send> Send for SyncSender<T> {}
 /// A **send** operation can only fail if the receiving end of a channel is
 /// disconnected, implying that the data could never be received. The error
 /// contains the data being sent as a payload so it can be recovered.
-///
-/// [`Sender::send`]: Sender::send
-/// [`SyncSender::send`]: SyncSender::send
 #[stable(feature = "rust1", since = "1.0.0")]
 #[derive(PartialEq, Eq, Clone, Copy)]
 pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);