@@ -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
8282pub ( 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