diff options
| author | Stocker <[email protected]> | 2021-07-28 19:56:36 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-28 19:56:36 -0400 |
| commit | 1472e9ed7c0d73b51b231337bcb467f025c13291 (patch) | |
| tree | a3ed51d20225d9d87595f071f5f4c5136c058820 /discord | |
| parent | Fix Example Usage in docs (diff) | |
| download | discord.py-1472e9ed7c0d73b51b231337bcb467f025c13291.tar.xz discord.py-1472e9ed7c0d73b51b231337bcb467f025c13291.zip | |
Fixes minor grammatical error in Command.update
Diffstat (limited to 'discord')
| -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 586fb470..78fc9560 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -385,7 +385,7 @@ class Command(_BaseCommand): pass def update(self, **kwargs): - """Updates :class:`Command` instance with updated attribute. + """Updates :class:`Command` instance with updated attributes. This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or |