From 427980367fac1f3f0f5977aa71820328ac820af4 Mon Sep 17 00:00:00 2001 From: Chen-Pang He Date: Wed, 4 Oct 2023 20:39:34 +0800 Subject: [PATCH] Fix an embarrassing typo --- src/fun/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fun/mod.rs b/src/fun/mod.rs index 44f0f05..a7bddb5 100644 --- a/src/fun/mod.rs +++ b/src/fun/mod.rs @@ -103,7 +103,7 @@ pub async fn cupcake(ctx: Context<'_>, /// **Usage**: /cute #[poise::command(category = "Fun", slash_command)] pub async fn cute(ctx: Context<'_>) -> anyhow::Result<()> { - let mut content = "Don't say this embarassing thing, dummy!".to_owned(); + let mut content = "Don't say this embarrassing thing, dummy!".to_owned(); let reply = ctx.say(&content).await?; let typing = ctx.serenity_context().http.start_typing(ctx.channel_id().0);