Skip to content

Commit

Permalink
remove whitespace in help
Browse files Browse the repository at this point in the history
  • Loading branch information
MLGPenguin committed Jan 3, 2025
1 parent 23d42eb commit aecd5bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ class HelpSubCommand {
)
).appendNewline().appendNewline()

sortedCommands.forEach { entry ->
sortedCommands.forEachIndexed { index, entry ->
message = message.append(
textSecondary(" - ").appendPrimary(entry.usage())
).appendNewline()
).let { if (index != sortedCommands.size - 1) it.appendNewLine() else it }
}

audience.sendMessage(
Expand Down

0 comments on commit aecd5bd

Please sign in to comment.