summaryrefslogtreecommitdiff
path: root/src/commands/copypasta.rs
diff options
context:
space:
mode:
authorseth <[email protected]>2023-06-28 13:41:00 -0400
committerseth <[email protected]>2023-06-28 13:41:00 -0400
commit33c8fc7bdc1d299301a9713cefdf85f27a1b7b69 (patch)
treeff83d8c5daf474a4dbf3d45d348057ffbfb8eaff /src/commands/copypasta.rs
parentca089aadb68dd403ecb4c371994b0a5d40d3778b (diff)
feat: add convertto commands
Diffstat (limited to 'src/commands/copypasta.rs')
-rw-r--r--src/commands/copypasta.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/copypasta.rs b/src/commands/copypasta.rs
index 20ca144..ec3f3c6 100644
--- a/src/commands/copypasta.rs
+++ b/src/commands/copypasta.rs
@@ -9,7 +9,7 @@ use serenity::model::prelude::interaction::application_command::{
use std::sync::Arc;
pub async fn run(options: &[CommandDataOption], channel_id: ChannelId, http: &Arc<Http>) -> String {
- let err_msg = "expected a copyasta";
+ let err_msg = "expected a copypasta";
let option = options
.get(0)
.expect(err_msg)