From 63baf3ca8a3c717f7041c2abd7d39b9d5dc0b284 Mon Sep 17 00:00:00 2001 From: lyderic Date: Wed, 4 Sep 2024 11:56:19 +0200 Subject: [PATCH] little typo --- src/app_config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_config.rs b/src/app_config.rs index 626c7692..beab0a7e 100644 --- a/src/app_config.rs +++ b/src/app_config.rs @@ -163,7 +163,7 @@ fn cannonicalize_if_possible(path: &std::path::Path) -> PathBuf { pub fn load() -> anyhow::Result { let _cli = Cli::parse(); let configuration_directory = &configuration_directory(); - load_from_directory(&configuration_directory) + load_from_directory(configuration_directory) } /// Parses and loads the configuration from the given directory.