From e09f64b7c965967b40e40f803d67dae4fd438e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Fri, 23 Apr 2021 02:12:19 +0100 Subject: [PATCH] Fix typo in FlagConverter docs --- docs/ext/commands/commands.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index 98dd82ae0..a5f8998b1 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]