Better spacing for section headers.

This commit is contained in:
wizjany 2019-06-05 10:39:10 -04:00
parent 34020f7bd2
commit b7e329bc1b

View File

@ -350,7 +350,7 @@ public final class DocumentationPrinter {
}
private void dumpSection(String title, CommandManager manager) {
cmdOutput.append(title).append("\n").append(Strings.repeat("~", title.length())).append("\n\n");
cmdOutput.append("\n").append(title).append("\n").append(Strings.repeat("~", title.length())).append("\n");
String prefix = TextConfig.getCommandPrefix();