diff --git a/src/utils/command.rs b/src/utils/command.rs index 71771d5a..b5bbc98e 100644 --- a/src/utils/command.rs +++ b/src/utils/command.rs @@ -121,7 +121,8 @@ pub trait BotCommand: Sized { /// assert_eq!(args, vec!["5", "hours"]); /// ``` /// -/// [`parse_command_with_prefix`]: crate::utils::command::parse_command_with_prefix +/// [`parse_command_with_prefix`]: +/// crate::utils::command::parse_command_with_prefix pub fn parse_command(text: &str, bot_name: N) -> Option<(&str, Vec<&str>)> where N: AsRef,