소스 검색

fix: missing word in comment

Signed-off-by: ariasuni <aria@ariasuni.eu>
ariasuni 9 달 전
부모
커밋
a602161cba
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/fs/dir.rs

+ 1 - 1
src/fs/dir.rs

@@ -35,7 +35,7 @@ impl Dir {
     ///
     /// This function does not attempt to read the contents of the directory; it merely
     /// initializes an instance of `Dir` with an empty `DirEntry` list and the specified path.
-    /// To populate the `Dir` object with actual directory contents, use the `read`.
+    /// To populate the `Dir` object with actual directory contents, use the `read` function.
     pub fn new(path: PathBuf) -> Self {
         Self {
             contents: vec![],