io: fix typo in AsyncSeekExt::rewind docs (#4893)

This commit is contained in:
Tomio
2022-08-10 14:54:36 +00:00
committed by GitHub
parent 2099d0bd87
commit aea09478e1
+1 -1
View File
@@ -69,7 +69,7 @@ cfg_io_util! {
/// Creates a future which will rewind to the beginning of the stream.
///
/// This is convenience method, equivalent to to `self.seek(SeekFrom::Start(0))`.
/// This is convenience method, equivalent to `self.seek(SeekFrom::Start(0))`.
fn rewind(&mut self) -> Seek<'_, Self>
where
Self: Unpin,