From 80ff07f53d26a84a903c1847736b7c5435e61191 Mon Sep 17 00:00:00 2001 From: Flame442 <34169552+Flame442@users.noreply.github.com> Date: Tue, 7 May 2019 16:12:08 -0400 Subject: [PATCH] [Core] Fix two typos in API Token Converter (#2650) --- redbot/core/commands/converter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/commands/converter.py b/redbot/core/commands/converter.py index b3412b45f..308c442c9 100644 --- a/redbot/core/commands/converter.py +++ b/redbot/core/commands/converter.py @@ -47,9 +47,9 @@ class APIToken(discord.ext.commands.Converter): This will parse the input argument separating the key value pairs into a format to be used for the core bots API token storage. - This will split the argument by eiher `;` or `,` and return a dict + This will split the argument by either `;` or `,` and return a dict to be stored. Since all API's are different and have different naming convention, - this leaves the owness on the cog creator to clearly define how to setup the correct + this leaves the onus on the cog creator to clearly define how to setup the correct credential names for their cogs. """