Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
surban committed Dec 5, 2024
1 parent 2557284 commit d69bbda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/function/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ impl FunctionDir {
/// Create a subdirectory and its parent directories.
pub fn create_dir_all(&self, name: impl AsRef<Path>) -> Result<()> {
let path = self.property_path(name)?;
log::debug!("creating directorys {}", path.display());
log::debug!("creating directories {}", path.display());
fs::create_dir_all(path)
}

Expand Down

0 comments on commit d69bbda

Please sign in to comment.