From 7d00aec297e0e65653632037a3e497bff787bfb9 Mon Sep 17 00:00:00 2001 From: ChrisJL Date: Sat, 2 Apr 2022 20:05:53 +0100 Subject: Use imperative mood in docstrings Co-authored-by: Mark <1515135+MarkKoz@users.noreply.github.com> --- botcore/_bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'botcore/_bot.py') 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}") -- cgit v1.2.3