From 907b385e7dc90f0b2ad5fd4c91f168dd432037f7 Mon Sep 17 00:00:00 2001 From: Michael Roth Date: Sat, 3 Feb 2024 18:02:10 +0100 Subject: [PATCH] docs: Fix minor documentation glitch --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 01d6530..9b9bad7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -534,7 +534,7 @@ pub async fn remove_dir>(path: P) -> io::Result<()> { /// /// An error will be returned in the following situations: /// -/// * `path` is not an existing and empty directory. +/// * `path` is not an existing directory. /// * The current process lacks permissions to remove the directory. /// * Some other I/O error occurred. ///