diff options
Diffstat (limited to 'src/commands/general/random.rs')
| -rw-r--r-- | src/commands/general/random.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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?; |
