stream: fix link on Peekable (#6861)

This commit is contained in:
vxzyfx's github
2024-09-23 14:56:42 +00:00
committed by GitHub
parent 542197cdb9
commit 8ef5163df8
+1 -1
View File
@@ -8,7 +8,7 @@ use crate::stream_ext::Fuse;
use crate::StreamExt;
pin_project! {
/// Stream returned by the [`chain`](super::StreamExt::peekable) method.
/// Stream returned by the [`peekable`](super::StreamExt::peekable) method.
pub struct Peekable<T: Stream> {
peek: Option<T::Item>,
#[pin]