diff --git a/tokio-stream/src/stream_ext.rs b/tokio-stream/src/stream_ext.rs index 05be5ab2f..cb640603d 100644 --- a/tokio-stream/src/stream_ext.rs +++ b/tokio-stream/src/stream_ext.rs @@ -1180,7 +1180,7 @@ pub trait StreamExt: Stream { ChunksTimeout::new(self, max_size, duration) } - /// Turns the stream into a peekable stream, whose first element can be peeked at without being + /// Turns the stream into a peekable stream, whose next element can be peeked at without being /// consumed. /// ```rust /// use tokio_stream::{self as stream, StreamExt};