aboutsummaryrefslogtreecommitdiff
path: root/src/ext/framework
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-12-14 12:31:33 -0800
committerAustin Hellyer <[email protected]>2016-12-14 12:31:33 -0800
commit9c1ed6ca933f81bc0254d9d52159b9190b50a3ea (patch)
tree6c993f98a9611bd681f81a1f45d5a934619957c9 /src/ext/framework
parentFix plain help command usage output (diff)
downloadserenity-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.rs2
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);