Skip to content

Commit f894eda

Browse files
maciektrmkaput
authored andcommitted
Fix commands listing table cells width
1 parent 6b0727c commit f894eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scarb/src/bin/scarb/commands/commands.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ impl Message for CommandsList {
3535
fn text(self) -> String {
3636
let mut text = String::from("Installed Commands:\n");
3737
for (name, info) in self.commands {
38-
text.push_str(&format!("{:<20}: {}\n", name, info));
38+
text.push_str(&format!("{:<22}: {}\n", name, info));
3939
}
4040
text
4141
}

0 commit comments

Comments
 (0)