From 082cad95291b7165b97b4c0932648dfd207a6692 Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Fri, 12 May 2023 22:41:16 +0200 Subject: [PATCH] chore: reformat a docstring --- crates/pacdef_core/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/pacdef_core/src/config.rs b/crates/pacdef_core/src/config.rs index ecc2629..e0e39f8 100644 --- a/crates/pacdef_core/src/config.rs +++ b/crates/pacdef_core/src/config.rs @@ -24,8 +24,8 @@ impl Config { /// /// # Errors /// - /// This function will return an error if the config file exists but cannot be read, its - /// contents are not UTF-8, or the file is malformed. + /// This function will return an error if the config file exists but cannot be + /// read, its contents are not UTF-8, or the file is malformed. pub fn load(config_file: &Path) -> Result { let from_file = read_to_string(config_file);