Skip to content

Commit

Permalink
Remove unnecessary ticks (#664)
Browse files Browse the repository at this point in the history
Commands in the strikethrough-style ended up with ticks around their strikethrough characters.
We can safely remove these ticks, as the command names are already modified and surrounded by ticks.
  • Loading branch information
Lakelezz authored and arqunis committed Jul 23, 2019
1 parent b7b3a85 commit eddef7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/standard/help_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ fn flatten_group_to_plain_string(
);
}

let joined_commands = format!("`{}`", group.command_names.join("`, `"));
let joined_commands = format!("{}", group.command_names.join(", "));

let _ = write!(group_text, "{}", joined_commands);

Expand Down

0 comments on commit eddef7b

Please sign in to comment.