Skip to content

Commit

Permalink
stream: fix link on Peekable (#6861)
Browse files Browse the repository at this point in the history
  • Loading branch information
vxzyfx authored Sep 23, 2024
1 parent 542197c commit 8ef5163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio-stream/src/stream_ext/peekable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 8ef5163

Please sign in to comment.