diff --git a/docs/cog_guides/core.rst b/docs/cog_guides/core.rst index a0edc6555..d974a46ed 100644 --- a/docs/cog_guides/core.rst +++ b/docs/cog_guides/core.rst @@ -2767,7 +2767,7 @@ list of key,values as described by the cog requesting this command. **Examples:** - - ``[p]set api Spotify redirect_uri localhost`` + - ``[p]set api spotify redirect_uri localhost`` - ``[p]set api github client_id,whoops client_secret,whoops`` **Arguments:** @@ -2812,8 +2812,8 @@ set api remove Remove the given services with all their keys and tokens. **Examples:** - - ``[p]set api remove Spotify`` - - ``[p]set api remove github audiodb`` + - ``[p]set api remove spotify`` + - ``[p]set api remove github youtube`` **Arguments:** - ```` - The services to remove. diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 514227172..88813990f 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -3138,7 +3138,7 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): Note: API tokens are sensitive, so this command should only be used in a private channel or in DM with the bot. **Examples:** - - `[p]set api Spotify redirect_uri localhost` + - `[p]set api spotify redirect_uri localhost` - `[p]set api github client_id,whoops client_secret,whoops` **Arguments:** @@ -3182,8 +3182,8 @@ class Core(commands.commands._RuleDropper, commands.Cog, CoreLogic): Remove the given services with all their keys and tokens. **Examples:** - - `[p]set api remove Spotify` - - `[p]set api remove github audiodb` + - `[p]set api remove spotify` + - `[p]set api remove github youtube` **Arguments:** - `` - The services to remove."""