summaryrefslogtreecommitdiff
path: root/src/commands/general/random.rs
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-15 02:04:28 -0500
committerseth <[email protected]>2023-12-15 16:41:13 -0500
commit32d42d5fbab9c74dbe59fbdb94a29112f8766e27 (patch)
tree79111090bf837fc97fc5303f1fe93e6a550e6b06 /src/commands/general/random.rs
parente38a441e37ec1a1dff07cf8bcff3e36a411709aa (diff)
commands: improve descriptions
Diffstat (limited to 'src/commands/general/random.rs')
-rw-r--r--src/commands/general/random.rs6
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?;