Fix error message typo

This commit is contained in:
Victor Mignot 2023-05-02 17:12:16 +02:00
parent 43ca80fd7d
commit 8ed0e9079b
No known key found for this signature in database
GPG key ID: FFE4EF056FB5E0D0

View file

@ -176,7 +176,7 @@ impl EventHandler for Handler {
} }
_ => Err(CommandExecutionError::UnknownCommand( _ => Err(CommandExecutionError::UnknownCommand(
"Received an unknon command from Discord".to_string(), "Received an unknown command from Discord".to_string(),
)), )),
}; };