diff options
| author | S Stewart <[email protected]> | 2017-11-20 09:00:32 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-11-20 09:00:32 -0600 |
| commit | 89f9009a2828566ae3a3e8f86a19080cdd9f8cb8 (patch) | |
| tree | 71b78b0de65b4420c617693275aed8e4d391affa | |
| parent | Stop asyncio.async throwing a syntax error in 3.7. (diff) | |
| download | discord.py-89f9009a2828566ae3a3e8f86a19080cdd9f8cb8.tar.xz discord.py-89f9009a2828566ae3a3e8f86a19080cdd9f8cb8.zip | |
[commands] Fix minor spelling mistake
| -rw-r--r-- | discord/ext/commands/bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/bot.py b/discord/ext/commands/bot.py index 048b2f4d..1662f422 100644 --- a/discord/ext/commands/bot.py +++ b/discord/ext/commands/bot.py @@ -954,7 +954,7 @@ class Bot(BotBase, discord.Client): than ignoring itself. If ``False`` (the default) then the bot will ignore itself. This cannot be changed once initialised. formatter : :class:`.HelpFormatter` - The formatter used to format the help message. By default, it uses a + The formatter used to format the help message. By default, it uses the :class:`.HelpFormatter`. Check it for more info on how to override it. If you want to change the help command completely (add aliases, etc) then a call to :meth:`~.Bot.remove_command` with 'help' as the argument would do the |