We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff43cd5 commit e1b9054Copy full SHA for e1b9054
1 file changed
vlib/cli/help.v
@@ -114,7 +114,7 @@ pub fn (cmd &Command) help_message() string {
114
base_indent := ' '.repeat(base_indent_len)
115
description_indent := ' '.repeat(name_len - command.name.len)
116
help += '${base_indent}${command.name}${description_indent}' +
117
- pretty_description(command.description, name_len) + '\n'
+ pretty_description(command.description, base_indent_len + name_len) + '\n'
118
}
119
120
return help
0 commit comments