summaryrefslogtreecommitdiff
path: root/ext/fs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fs')
-rw-r--r--ext/fs/interface.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/fs/interface.rs b/ext/fs/interface.rs
index 7624535c9..14ff54aaa 100644
--- a/ext/fs/interface.rs
+++ b/ext/fs/interface.rs
@@ -96,7 +96,8 @@ pub trait FileSystem: std::fmt::Debug + MaybeSend + MaybeSync {
options: OpenOptions,
) -> FsResult<Rc<dyn File>>;
- fn mkdir_sync(&self, path: &Path, recusive: bool, mode: u32) -> FsResult<()>;
+ fn mkdir_sync(&self, path: &Path, recursive: bool, mode: u32)
+ -> FsResult<()>;
async fn mkdir_async(
&self,
path: PathBuf,