From a1ca7889bb1d53c239a737322e1e6888b4ecc6e2 Mon Sep 17 00:00:00 2001 From: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> Date: Tue, 1 Apr 2025 08:45:12 +0200 Subject: [PATCH] Cargo fmt Signed-off-by: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com> --- src/commands/info.rs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/commands/info.rs b/src/commands/info.rs index 57d52c5..0dea1ea 100644 --- a/src/commands/info.rs +++ b/src/commands/info.rs @@ -23,10 +23,15 @@ impl Runnable for Input { let info = &self.info; match info { - Info::CheatsExample => println!("{}", include_str!("../../docs/examples/cheatsheet/example.cheat")), + Info::CheatsExample => { + println!("{}", include_str!("../../docs/examples/cheatsheet/example.cheat")) + } Info::CheatsPath => println!("{}", &filesystem::default_cheat_pathbuf()?.to_string()), Info::ConfigPath => println!("{}", &filesystem::default_config_pathbuf()?.to_string()), - Info::ConfigExample => println!("{}", include_str!("../../docs/examples/configuration/config-example.yaml")), + Info::ConfigExample => println!( + "{}", + include_str!("../../docs/examples/configuration/config-example.yaml") + ), } Ok(()) }