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
+1 -6
View File
@@ -20,17 +20,12 @@ pub struct CompletionGenerateCommand {
impl CompletionGenerateCommand {
pub async fn execute(self) -> Result<()> {
info!("executing completion generate command");
info!("executing generate completion command");
let mut cmd = Cli::command();
let name = cmd.get_name().to_string();
clap_complete::generate(self.shell, &mut cmd, name, &mut io::stdout());
info!(
"Shell script successfully generated for shell {}!",
self.shell
);
Ok(())
}
}