From fa0a469a2f91cc66faec567cd2f9d0549e75113a Mon Sep 17 00:00:00 2001 From: Kreusada <67752638+Kreusada@users.noreply.github.com> Date: Sun, 1 Sep 2024 23:29:40 +0100 Subject: [PATCH] Fix docstring --- redbot/core/utils/chat_formatting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/utils/chat_formatting.py b/redbot/core/utils/chat_formatting.py index a65417b298c..9a96ae380c6 100644 --- a/redbot/core/utils/chat_formatting.py +++ b/redbot/core/utils/chat_formatting.py @@ -68,7 +68,7 @@ def header(text: str, size: Literal["small", "medium", "large"]) -> str: ---------- text : str The text for the header. - url : Literal['small', 'medium', 'large'] + size : Literal['small', 'medium', 'large'] The size of the header ('small', 'medium' or 'large') Returns