about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-04-22 17:37:04 +0000
committerbors <bors@rust-lang.org>2017-04-22 17:37:04 +0000
commitcb4065b9ce4e2bb2c37994762462da76272d6907 (patch)
treec902d87976bdc799833c4067df413eb183d778ff /src/libstd/sync
parent9cc77d7690fc723b264962a4d01a6221be87d80e (diff)
parent9c978820550994809940fa91436b6fbab9e6db49 (diff)
downloadrust-cb4065b9ce4e2bb2c37994762462da76272d6907.tar.gz
rust-cb4065b9ce4e2bb2c37994762462da76272d6907.zip
Auto merge of #41431 - GuillaumeGomez:hoedown-default, r=aturon
Re-enable hoedown by default

r? @rust-lang/docs

cc @aturon
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/mpsc/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/mod.rs b/src/libstd/sync/mpsc/mod.rs
index 852675edc02..6c8839224f7 100644
--- a/src/libstd/sync/mpsc/mod.rs
+++ b/src/libstd/sync/mpsc/mod.rs
@@ -452,7 +452,7 @@ pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);
 /// An error returned from the [`recv`] function on a [`Receiver`].
 ///
 /// The [`recv`] operation can only fail if the sending half of a
-/// [`channel`] (or [`sync_channel`]) is disconnected, implying that no further
+/// [`channel`][`channel`] (or [`sync_channel`]) is disconnected, implying that no further
 /// messages will ever be received.
 ///
 /// [`recv`]: struct.Receiver.html#method.recv