From 32d42d5fbab9c74dbe59fbdb94a29112f8766e27 Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 15 Dec 2023 02:04:28 -0500 Subject: commands: improve descriptions --- src/commands/general/random.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/general/random.rs') diff --git a/src/commands/general/random.rs b/src/commands/general/random.rs index 9595d09..286d04e 100644 --- a/src/commands/general/random.rs +++ b/src/commands/general/random.rs @@ -7,7 +7,7 @@ pub async fn random(_ctx: Context<'_>) -> Result<()> { Ok(()) } -/// get a random piece of teawie lore! +/// Get a random piece of teawie lore! #[poise::command(prefix_command, slash_command)] pub async fn lore(ctx: Context<'_>) -> Result<()> { let resp = utils::random_choice(consts::LORE)?; @@ -15,14 +15,14 @@ pub async fn lore(ctx: Context<'_>) -> Result<()> { Ok(()) } -/// get a random teawie +/// Get a random teawie #[poise::command(prefix_command, slash_command)] pub async fn teawie(ctx: Context<'_>) -> Result<()> { let url = api::guzzle::get_random_teawie().await?; utils::send_url_as_embed(ctx, url).await } -/// get a random shiggy +/// Get a random shiggy #[poise::command(prefix_command, slash_command)] pub async fn shiggy(ctx: Context<'_>) -> Result<()> { let url = api::shiggy::get_random_shiggy().await?; -- cgit v1.2.3