From 9b4363eff37eb63c56e57cc3a053ca6ea72151ea Mon Sep 17 00:00:00 2001 From: Andy <76832778+Andeeeee@users.noreply.github.com> Date: Mon, 15 Feb 2021 14:31:01 -0800 Subject: [PATCH] grammar fixes (#4792) * grammar fixes * author(s) --- redbot/core/_sharedlibdeprecation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/_sharedlibdeprecation.py b/redbot/core/_sharedlibdeprecation.py index 406d9d0c3..db4bffa55 100644 --- a/redbot/core/_sharedlibdeprecation.py +++ b/redbot/core/_sharedlibdeprecation.py @@ -21,9 +21,9 @@ class SharedLibImportWarner(MetaPathFinder): if parts[0] != "cog_shared" or len(parts) != 2: return None msg = ( - "One of cogs uses shared libraries which are" + "One of the cogs uses shared libraries which are" " deprecated and scheduled for removal in the future.\n" - "You should inform author of the cog about this message." + "You should inform the author(s) of the cog about this message." ) warnings.warn(msg, SharedLibDeprecationWarning, stacklevel=2) return None