Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <name>!
"""Command that replies to the invoker with Hi <name>!

!hi
"""
Expand Down
2 changes: 1 addition & 1 deletion examples/basic_bot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <name>!
"""Command that replies to the invoker with Hi <name>!

!hi
"""
Expand Down
Loading