From c25b09fb501958ca361a8e7a41ba38a3fd6ea0c5 Mon Sep 17 00:00:00 2001 From: kangalio Date: Wed, 8 Mar 2023 18:01:24 +0100 Subject: [PATCH] Fix channal typo (#2355) Fixes #2321 --- examples/e05_command_framework/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/e05_command_framework/src/main.rs b/examples/e05_command_framework/src/main.rs index 967acb2c812..fe0480f864b 100644 --- a/examples/e05_command_framework/src/main.rs +++ b/examples/e05_command_framework/src/main.rs @@ -354,7 +354,7 @@ async fn say(ctx: &Context, msg: &Message, mut args: Args) -> CommandResult { let settings = if let Some(guild_id) = msg.guild_id { // By default roles, users, and channel mentions are cleaned. ContentSafeOptions::default() - // We do not want to clean channal mentions as they + // We do not want to clean channel mentions as they // do not ping users. .clean_channel(false) // If it's a guild channel, we want mentioned users to be displayed