Skip to content

Commit

Permalink
Fix an embarrassing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jdh8 committed Oct 4, 2023
1 parent dc8830d commit 4279803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fun/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 4279803

Please sign in to comment.