summaryrefslogtreecommitdiffstats
path: root/tokio/src/fs/read.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/fs/read.rs')
-rw-r--r--tokio/src/fs/read.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/fs/read.rs b/tokio/src/fs/read.rs
index f61275d0..2d80eb5b 100644
--- a/tokio/src/fs/read.rs
+++ b/tokio/src/fs/read.rs
@@ -2,7 +2,7 @@ use crate::fs::asyncify;
use std::{io, path::Path};
-/// Read the entire contents of a file into a bytes vector.
+/// Reads the entire contents of a file into a bytes vector.
///
/// This is an async version of [`std::fs::read`][std]
///