mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-22 02:37:57 -05:00
Grammar fixes (#4500)
* Grammar fixes * More changes * Grammar * Error grammar * Spelling * Grammar * REsolves grammar * grammar * grammar * grammar * grammar * grammar * grammar * grammar * grammar * "commited" > "committed" * apostrophe * more grammar * grammar * `funtion` to `function` * grammar in alias cog * grammar in cleanup cog * grammar in customcom cog * grammar in mod cog * grammar in reports cog * fix grammar in streams cog * missing apostrophe * grammar fix in trivia cog Co-authored-by: Jyu Viole Grace <24418520+thisisjvgrace@users.noreply.github.com> Co-authored-by: Jyu Viole Grace <thisisjvgrace@users.noreply.github.com>
This commit is contained in:
@@ -246,12 +246,12 @@ class RedBase(
|
||||
"and implement the required interfaces."
|
||||
)
|
||||
|
||||
# do not switch to isinstance, we want to know that this has not been overriden,
|
||||
# do not switch to isinstance, we want to know that this has not been overridden,
|
||||
# even with a subclass.
|
||||
if type(self._help_formatter) is commands.help.RedHelpFormatter:
|
||||
self._help_formatter = formatter
|
||||
else:
|
||||
raise RuntimeError("The formatter has already been overriden.")
|
||||
raise RuntimeError("The formatter has already been overridden.")
|
||||
|
||||
def reset_help_formatter(self):
|
||||
"""
|
||||
@@ -1217,7 +1217,7 @@ class RedBase(
|
||||
**kwargs,
|
||||
):
|
||||
"""
|
||||
This is a convienience wrapper around
|
||||
This is a convenience wrapper around
|
||||
|
||||
discord.abc.Messageable.send
|
||||
|
||||
@@ -1227,7 +1227,7 @@ class RedBase(
|
||||
|
||||
This should realistically only be used for responding using user provided
|
||||
input. (unfortunately, including usernames)
|
||||
Manually crafted messages which dont take any user input have no need of this
|
||||
Manually crafted messages which don't take any user input have no need of this
|
||||
|
||||
Returns
|
||||
-------
|
||||
|
||||
Reference in New Issue
Block a user