From 2517afa5fb90322505d163005504c5e8921ade5d Mon Sep 17 00:00:00 2001 From: yuhui Date: Thu, 19 Dec 2024 20:33:21 +0800 Subject: [PATCH] Update --- clients/filesystem-fuse/src/filesystem.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/filesystem-fuse/src/filesystem.rs b/clients/filesystem-fuse/src/filesystem.rs index ad552c16ebb..7a74180159b 100644 --- a/clients/filesystem-fuse/src/filesystem.rs +++ b/clients/filesystem-fuse/src/filesystem.rs @@ -96,7 +96,7 @@ pub(crate) trait PathFileSystem: Send + Sync { /// Get the file stat by parent file path and file name, if the file exists, return the file stat async fn lookup(&self, parent: &str, name: &str) -> Result; - /// Read the directory by file path, if the is a valid directory, return the file stat list + /// Read the directory by file path, if the directory exists, return the file stat list async fn read_dir(&self, path: &str) -> Result>; /// Open the file by file path and flags, if the file exists, return the opened file