From 2a0d943377acc9bd98914d95a0f45658db7f8389 Mon Sep 17 00:00:00 2001 From: Wiktor Domaradzki <87876261+Domar95@users.noreply.github.com> Date: Sat, 27 Sep 2025 18:28:27 +0200 Subject: [PATCH] docs: fix typo in commands example Signed-off-by: Wiktor Domaradzki <87876261+Domar95@users.noreply.github.com> --- docs/getting-started/quickstart.rst | 2 +- examples/basic_bot/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/quickstart.rst b/docs/getting-started/quickstart.rst index 3c4ed559..ab9f8916 100644 --- a/docs/getting-started/quickstart.rst +++ b/docs/getting-started/quickstart.rst @@ -155,7 +155,7 @@ Before running the code below, there are just a couple more steps we need to tak @commands.command() async def hi(self, ctx: commands.Context) -> None: - """Command that replys to the invoker with Hi ! + """Command that replies to the invoker with Hi ! !hi """ diff --git a/examples/basic_bot/main.py b/examples/basic_bot/main.py index ff14ca22..94808728 100644 --- a/examples/basic_bot/main.py +++ b/examples/basic_bot/main.py @@ -57,7 +57,7 @@ async def event_oauth_authorized(self, payload: authentication.UserTokenPayload) class GeneralCommands(commands.Component): @commands.command() async def hi(self, ctx: commands.Context[Bot]) -> None: - """Command that replys to the invoker with Hi ! + """Command that replies to the invoker with Hi ! !hi """