1
Fork 0
mirror of https://github.com/allthingslinux/tux.git synced 2024-10-03 00:53:12 +00:00

fix(help.py): correct flag example in help message from '--reason' to '-reason' for better command understanding

This commit is contained in:
kzndotsh 2024-08-24 06:07:51 +00:00
parent 809e15f41f
commit 67bbf33af4

View file

@ -225,7 +225,7 @@ class TuxHelp(commands.HelpCommand):
)
embed.add_field(
name="Flag Help",
value=f"Flags in `[]` are required and `<>` are optional. Most flags have aliases that can be used.\n> e.g. `{prefix}ban @user --reason spamming` or `{prefix}b @user -r spamming`",
value=f"Flags in `[]` are required and `<>` are optional. Most flags have aliases that can be used.\n> e.g. `{prefix}ban @user -reason spamming` or `{prefix}b @user -r spamming`",
inline=False,
)
embed.add_field(