From a60cd8f2a96aae3f7db8dfccec2aa5cf21f8c411 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 25 Aug 2024 17:30:02 +0200 Subject: refactor(treewide): Conform to `cargo clippy` --- src/config/default.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/config/default.rs') diff --git a/src/config/default.rs b/src/config/default.rs index 8eedb18..59063f5 100644 --- a/src/config/default.rs +++ b/src/config/default.rs @@ -34,7 +34,7 @@ fn get_config_path(name: &'static str) -> Result { pub(super) fn create_path(path: PathBuf) -> Result { if !path.exists() { if let Some(parent) = path.parent() { - std::fs::create_dir_all(&parent) + std::fs::create_dir_all(parent) .with_context(|| format!("Failed to create the '{}' directory", path.display()))? } } -- cgit 1.4.1