diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-04-21 16:09:28 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2017-04-22 13:25:14 +0200 |
| commit | d79b511f5c0eb6092c1cc4c3fd41a673cf5e1d56 (patch) | |
| tree | b918e821794d4caf610817ddd9310dfada0b531c /src/libstd/sync/mpsc | |
| parent | 295f25b19862eed40ed12e13db1afae1b4f41d35 (diff) | |
| download | rust-d79b511f5c0eb6092c1cc4c3fd41a673cf5e1d56.tar.gz rust-d79b511f5c0eb6092c1cc4c3fd41a673cf5e1d56.zip | |
Fix invalid linkage
Diffstat (limited to 'src/libstd/sync/mpsc')
| -rw-r--r-- | src/libstd/sync/mpsc/mod.rs | 2 |
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 |
