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(()) }