From 7b53b7b659fe1feeb30e768cad8fdadf9531beb6 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sun, 22 Dec 2019 12:55:09 -0800 Subject: doc: fill out `fs` and remove html links (#2015) also add an async version of `fs::canonicalize` --- tokio/src/sync/mpsc/unbounded.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tokio/src/sync/mpsc/unbounded.rs') diff --git a/tokio/src/sync/mpsc/unbounded.rs b/tokio/src/sync/mpsc/unbounded.rs index 63d04370..d1222f28 100644 --- a/tokio/src/sync/mpsc/unbounded.rs +++ b/tokio/src/sync/mpsc/unbounded.rs @@ -8,7 +8,7 @@ use std::task::{Context, Poll}; /// Send values to the associated `UnboundedReceiver`. /// /// Instances are created by the -/// [`unbounded_channel`](fn.unbounded_channel.html) function. +/// [`unbounded_channel`](unbounded_channel) function. pub struct UnboundedSender { chan: chan::Tx, } @@ -32,7 +32,7 @@ impl fmt::Debug for UnboundedSender { /// Receive values from the associated `UnboundedSender`. /// /// Instances are created by the -/// [`unbounded_channel`](fn.unbounded_channel.html) function. +/// [`unbounded_channel`](unbounded_channel) function. pub struct UnboundedReceiver { /// The channel receiver chan: chan::Rx, -- cgit v1.2.3