diff options
Diffstat (limited to 'src/framework/mod.rs')
| -rw-r--r-- | src/framework/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs index 14533b5..ccebfd4 100644 --- a/src/framework/mod.rs +++ b/src/framework/mod.rs @@ -682,7 +682,7 @@ impl BuiltinFramework { if let Some(ref prefix) = group.prefix { for v in &cmd.aliases { group.commands.insert( - format!("{} {}", prefix, v.to_owned()), + format!("{} {}", prefix, v), CommandOrAlias::Alias(format!("{} {}", prefix, name)), ); } |