stream: fix link on Peekable (#6861)

This commit is contained in:
vxzyfx's github 2024-09-23 22:56:42 +08:00 committed by GitHub
parent 542197cdb9
commit 8ef5163df8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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]