summaryrefslogtreecommitdiffstats
path: root/tokio/src/stream/empty.rs
diff options
context:
space:
mode:
authorGeoff Shannon <geoffpshannon@gmail.com>2020-05-14 07:51:55 -0700
committerGitHub <noreply@github.com>2020-05-14 16:51:55 +0200
commitb44ab273597d3757b5b50eed95c4f8890fa54e42 (patch)
tree34192a726cd72679bead33376d2f8bed86d67f26 /tokio/src/stream/empty.rs
parent02661ba30aed5d02e142212a323103d1bf84557b (diff)
docs: improve discoverability of codec module (#2523)
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>);