Fixed in depth help styling

This commit is contained in:
Risto Lahtela 2020-09-09 13:07:45 +03:00
parent 6186e082a1
commit b67eea951d

View File

@ -93,7 +93,7 @@ public class HelpFormatter {
}
for (Subcommand.ArgumentDescriptor argument : cmd.getArguments()) {
builder.append("***").append(m).append(argument.isRequired() ? '<' + argument.getName() + '>' : '[' + argument.getName() + ']')
builder.append(" ***").append(m).append(argument.isRequired() ? '<' + argument.getName() + '>' : '[' + argument.getName() + ']')
.append(s).append(" ").append(argument.getDescription()).append('\n');
}
return builder.toString();