From 3557cf9a40792d0c763e826b68ea09f98f2c2e70 Mon Sep 17 00:00:00 2001 From: p0lunin Date: Mon, 24 Feb 2020 16:39:57 +0200 Subject: [PATCH] fmt --- src/utils/command.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,