diff options
| author | SilicalNZ <[email protected]> | 2018-08-24 06:24:04 +1200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-08-24 06:24:04 +1200 |
| commit | 52e8c06aed714a0b97b1c99430b4f84734cc4b42 (patch) | |
| tree | c571b8d020ad1fa9686507f9804b0f92ecde8247 | |
| parent | [commands] Use eval instead of get_type_hints to resolve typehints (diff) | |
| download | discord.py-52e8c06aed714a0b97b1c99430b4f84734cc4b42.tar.xz discord.py-52e8c06aed714a0b97b1c99430b4f84734cc4b42.zip | |
Fix typo in core.Command docstring
| -rw-r--r-- | discord/ext/commands/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 22882f4e..6d3644ce 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -128,7 +128,7 @@ class Command: :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``. parent: Optional[command] - The parent command that this command belongs to. ``None`` is there + The parent command that this command belongs to. ``None`` if there isn't one. checks A list of predicates that verifies if the command could be executed |