From 3782e9c1b934acc435f98bbe45be63ec88a6997d Mon Sep 17 00:00:00 2001 From: TheDiscordHistorian <78689486+TheDiscordHistorian@users.noreply.github.com> Date: Thu, 4 Mar 2021 04:44:39 +0900 Subject: [PATCH] fix a minor grammar issue (#4846) The docstring says "cogs the folder" which should be "cogs folder" --- redbot/core/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redbot/core/bot.py b/redbot/core/bot.py index bf9358075..6f47a42d2 100644 --- a/redbot/core/bot.py +++ b/redbot/core/bot.py @@ -1271,7 +1271,7 @@ class RedBase( @staticmethod def list_packages(): - """Lists packages present in the cogs the folder""" + """Lists packages present in the cogs folder""" return os.listdir("cogs") async def save_packages_status(self, packages):