summaryrefslogtreecommitdiff
path: root/src/commands/general/ask.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/ask.rs
parente38a441e37ec1a1dff07cf8bcff3e36a411709aa (diff)
commands: improve descriptions
Diffstat (limited to 'src/commands/general/ask.rs')
-rw-r--r--src/commands/general/ask.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/general/ask.rs b/src/commands/general/ask.rs
index e1f008a..3f225bb 100644
--- a/src/commands/general/ask.rs
+++ b/src/commands/general/ask.rs
@@ -2,12 +2,12 @@ use crate::{consts, utils, Context};
use color_eyre::eyre::{Context as _, Result};
-/// ask teawie a question!
+/// Ask teawie a question!
#[poise::command(prefix_command, slash_command)]
pub async fn ask(
ctx: Context<'_>,
- #[description = "the question you want to ask teawie"]
- #[rename = "question"]
+ #[description = "The question you want to ask teawie"]
+ #[rename = "Question"]
_question: String,
) -> Result<()> {
let resp = utils::random_choice(consts::RESPONSES)