Skip to content

Commit 9793aab

Browse files
committed
Fix help grammar
1 parent d946753 commit 9793aab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/discord_bot/commands.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ declare_commands! {
7676
"storage" => (storage::run, "Admin commands to directly manipulate guild storage"),
7777
"support" => (support::run, "Use on people who are asking for support without using the support channel"),
7878
"trick" => (trick, "Adds a trick"),
79-
"welcome_message" => (welcome_message::run, "Sets the welcome message for new users in this discord"),
79+
"welcome_message" => (welcome_message::run, "Sets the welcome message for new users in this guild"),
8080
}
8181

8282
pub(crate) async fn run(
@@ -476,7 +476,7 @@ async fn help(
476476
let embed_name = if built_in_commands_embed_count == 0 {
477477
"Built-in commands:".to_owned()
478478
} else {
479-
format!("Built-in commands ({})", built_in_commands_embed_count + 1)
479+
format!("Built-in commands ({}):", built_in_commands_embed_count + 1)
480480
};
481481
built_in_commands_embed_count += 1;
482482
embed_builder =
@@ -498,7 +498,7 @@ async fn help(
498498
let embed_name = if built_in_commands_embed_count == 0 {
499499
"Built-in commands:".to_owned()
500500
} else {
501-
format!("Built-in commands ({})", built_in_commands_embed_count + 1)
501+
format!("Built-in commands ({}):", built_in_commands_embed_count + 1)
502502
};
503503
embed_builder = embed_builder.field(embed_name, built_in_commands, false);
504504
}

0 commit comments

Comments
 (0)