From df181632efd01a044ac654c20fbe41cbae316521 Mon Sep 17 00:00:00 2001 From: wyrapeseed Date: Tue, 21 Oct 2025 14:44:39 +0800 Subject: [PATCH] Fix documentation issues for src/lib.rs Signed-off-by: wyrapeseed --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index ee964ea..59477a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -120,11 +120,11 @@ pub async fn copy, Q: AsRef>(src: P, dst: Q) -> io::Result< /// /// This function currently corresponds to the `mkdir` function on Unix /// and the `CreateDirectory` function on Windows. -/// Note that, this [may change in the future][changes]. +/// Note that this [may change in the future][changes]. /// /// [changes]: io#platform-specific-behavior /// -/// **NOTE**: If a parent of the given path doesn't exist, this function will +/// Note that if a parent of the given path doesn't exist, this function will /// return an error. To create a directory and all its missing parents at the /// same time, use the [`create_dir_all`] function. /// @@ -161,7 +161,7 @@ pub async fn create_dir>(path: P) -> io::Result<()> { /// /// This function currently corresponds to the `mkdir` function on Unix /// and the `CreateDirectory` function on Windows. -/// Note that, this [may change in the future][changes]. +/// Note that this [may change in the future][changes]. /// /// [changes]: io#platform-specific-behavior /// @@ -980,14 +980,14 @@ impl File { /// Synchronizes OS-internal buffered contents to disk. /// - /// This is similar to [`sync_all()`][`File::sync_data()`], except that file metadata may not + /// This is similar to [`sync_all()`][`File::sync_all()`], except that file metadata may not /// be synchronized. /// /// This is intended for use cases that must synchronize the contents of the file, but don't /// need the file metadata synchronized to disk. /// /// Note that some platforms may simply implement this in terms of - /// [`sync_all()`][`File::sync_data()`]. + /// [`sync_all()`][`File::sync_all()`]. /// /// # Examples ///