diff options
| author | Austin Hellyer <[email protected]> | 2016-12-14 12:31:33 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-12-14 12:31:33 -0800 |
| commit | 9c1ed6ca933f81bc0254d9d52159b9190b50a3ea (patch) | |
| tree | 6c993f98a9611bd681f81a1f45d5a934619957c9 /src/ext/framework | |
| parent | Fix plain help command usage output (diff) | |
| download | serenity-9c1ed6ca933f81bc0254d9d52159b9190b50a3ea.tar.xz serenity-9c1ed6ca933f81bc0254d9d52159b9190b50a3ea.zip | |
Plain help: put groups on their own line
Diffstat (limited to 'src/ext/framework')
| -rw-r--r-- | src/ext/framework/help_commands.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ext/framework/help_commands.rs b/src/ext/framework/help_commands.rs index 6ad9735..be478db 100644 --- a/src/ext/framework/help_commands.rs +++ b/src/ext/framework/help_commands.rs @@ -225,6 +225,8 @@ pub fn plain(ctx: &Context, if no_commands { result.push_str("*[No Commands]*"); } + + result.push('\n'); } let _ = ctx.say(&result); |