diff options
Diffstat (limited to 'ext/fs/interface.rs')
-rw-r--r-- | ext/fs/interface.rs | 3 |
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, |