fix typos

This commit is contained in:
Clément DOUIN
2024-01-05 21:58:02 +01:00
parent 38c8a67ddd
commit 45ce05ec4d
10 changed files with 10 additions and 15 deletions
@@ -45,7 +45,7 @@ pub struct TemplateForwardCommand {
impl TemplateForwardCommand {
pub async fn execute(self, printer: &mut impl Printer, config: &TomlConfig) -> Result<()> {
info!("executing template forward command");
info!("executing forward template command");
let folder = &self.folder.name;
+1 -1
View File
@@ -41,7 +41,7 @@ pub struct TemplateSaveCommand {
impl TemplateSaveCommand {
pub async fn execute(self, printer: &mut impl Printer, config: &TomlConfig) -> Result<()> {
info!("executing template save command");
info!("executing save template command");
let folder = &self.folder.name;
+1 -1
View File
@@ -37,7 +37,7 @@ pub struct TemplateSendCommand {
impl TemplateSendCommand {
pub async fn execute(self, printer: &mut impl Printer, config: &TomlConfig) -> Result<()> {
info!("executing template send command");
info!("executing send template command");
let (toml_account_config, account_config) = config.clone().into_account_configs(
self.account.name.as_ref().map(String::as_str),