aboutsummaryrefslogtreecommitdiff
path: root/docs/ext/commands
diff options
context:
space:
mode:
authorAlex Nørgaard <[email protected]>2021-04-23 02:12:19 +0100
committerGitHub <[email protected]>2021-04-22 21:12:19 -0400
commite09f64b7c965967b40e40f803d67dae4fd438e54 (patch)
tree6e94b4025d337f2588377ff888bb0ce41886858f /docs/ext/commands
parentDefine utils.cached_property in if TYPE_CHECKING guard (diff)
downloaddiscord.py-e09f64b7c965967b40e40f803d67dae4fd438e54.tar.xz
discord.py-e09f64b7c965967b40e40f803d67dae4fd438e54.zip
Fix typo in FlagConverter docs
Diffstat (limited to 'docs/ext/commands')
-rw-r--r--docs/ext/commands/commands.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst
index 98dd82ae..a5f8998b 100644
--- a/docs/ext/commands/commands.rst
+++ b/docs/ext/commands/commands.rst
@@ -663,7 +663,7 @@ In order to customise the flag syntax we also have a few options that can be pas
make: str
# TOPIC: not allowed nsfw: yes Slowmode: 100
- class Settings(commands.FlagConverter, case_insentitive=True):
+ class Settings(commands.FlagConverter, case_insensitive=True):
topic: Optional[str]
nsfw: Optional[bool]
slowmode: Optional[int]