From 8ed06ef8256433fd8480f5ffc3822e4c2a776e19 Mon Sep 17 00:00:00 2001 From: Arnaud Gourlay Date: Thu, 30 Jun 2022 20:35:49 +0200 Subject: [PATCH] chore: fix typo (#4798) --- tokio/src/fs/read_dir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/fs/read_dir.rs b/tokio/src/fs/read_dir.rs index 281ea4cd7..10ad150d7 100644 --- a/tokio/src/fs/read_dir.rs +++ b/tokio/src/fs/read_dir.rs @@ -34,7 +34,7 @@ pub async fn read_dir(path: impl AsRef) -> io::Result { Ok(ReadDir(State::Idle(Some(std)))) } -/// Reads the the entries in a directory. +/// Reads the entries in a directory. /// /// This struct is returned from the [`read_dir`] function of this module and /// will yield instances of [`DirEntry`]. Through a [`DirEntry`] information