diff options
author | 2022-04-02 20:05:53 +0100 | |
---|---|---|
committer | 2022-04-02 20:05:53 +0100 | |
commit | 7d00aec297e0e65653632037a3e497bff787bfb9 (patch) | |
tree | f4748800698892fc9940c217b5507011ec614d27 /botcore | |
parent | Install optional deps during CI (diff) |
Use imperative mood in docstrings
Co-authored-by: Mark <[email protected]>
Diffstat (limited to 'botcore')
-rw-r--r-- | botcore/_bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/_bot.py b/botcore/_bot.py index 55923dd0..a43bb344 100644 --- a/botcore/_bot.py +++ b/botcore/_bot.py @@ -138,7 +138,7 @@ class BotBase(commands.Bot): self.all_commands.pop(alias, None) async def add_cog(self, cog: commands.Cog) -> None: - """Adds the given ``cog`` to the bot and logs the operation.""" + """Add the given ``cog`` to the bot and log the operation.""" await super().add_cog(cog) log.info(f"Cog loaded: {cog.qualified_name}") |