summaryrefslogtreecommitdiffstats
path: root/tokio/src/stream/empty.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/stream/empty.rs')
-rw-r--r--tokio/src/stream/empty.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/stream/empty.rs b/tokio/src/stream/empty.rs
index 6118673e..2f56ac6c 100644
--- a/tokio/src/stream/empty.rs
+++ b/tokio/src/stream/empty.rs
@@ -4,7 +4,7 @@ use core::marker::PhantomData;
use core::pin::Pin;
use core::task::{Context, Poll};
-/// Stream for the [`empty`] function.
+/// Stream for the [`empty`](fn@empty) function.
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct Empty<T>(PhantomData<T>);