diff options
author | Martin Fischer <martin@push-f.com> | 2023-06-26 15:10:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 09:10:27 -0400 |
commit | 801b9ec62d94f201e67d053ee90dae0b70e50a42 (patch) | |
tree | 145f840c570dd72258ef309e9d31f100a5aa5786 /ext/fs/interface.rs | |
parent | ad3c494b46c97f0cf91098b7ec2afa576ea7a3dd (diff) |
chore: fix typos (#19572)
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, |