We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0727c commit f894edaCopy full SHA for f894eda
scarb/src/bin/scarb/commands/commands.rs
@@ -35,7 +35,7 @@ impl Message for CommandsList {
35
fn text(self) -> String {
36
let mut text = String::from("Installed Commands:\n");
37
for (name, info) in self.commands {
38
- text.push_str(&format!("{:<20}: {}\n", name, info));
+ text.push_str(&format!("{:<22}: {}\n", name, info));
39
}
40
text
41
0 commit comments