From f3ac3359eccfa7d3bfa205717fa360bd6eb0b535 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Thu, 20 Feb 2025 21:17:39 -0500 Subject: [PATCH] slightly better help message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9d43278..a5c94dc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,7 @@ use sqlx::Row; #[derive(Parser, Debug)] struct BotArgs { - /// Prefix for the bot (if unspecified, the bot will not have one) + /// Prefix for the bot. If unspecified, the bot will not have one and will also not have access to message content. #[arg(short, long)] prefix: Option, }