Skip to content

Commit

Permalink
fix grammar (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
clevernt authored Jun 18, 2024
1 parent ef7467c commit a5585de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions twitchio/ext/commands/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ async def invoke(self, context):
await context.command(context)

def load_module(self, name: str) -> None:
"""Method which loads a module and it's cogs.
"""Method which loads a module and its cogs.
Parameters
------------
Expand All @@ -367,7 +367,7 @@ def load_module(self, name: str) -> None:
self._modules[name] = module

def unload_module(self, name: str) -> None:
"""Method which unloads a module and it's cogs.
"""Method which unloads a module and its cogs.
Parameters
----------
Expand Down Expand Up @@ -402,7 +402,7 @@ def unload_module(self, name: str) -> None:
del sys.modules[m]

def reload_module(self, name: str):
"""Method which reloads a module and it's cogs.
"""Method which reloads a module and its cogs.
Parameters
----------
Expand Down

0 comments on commit a5585de

Please sign in to comment.