From adb69e7157ff7d5ac03988ec5ce7f04cd1e2a0e6 Mon Sep 17 00:00:00 2001 From: Neon Jonn <60196795+neonjonn@users.noreply.github.com> Date: Fri, 11 Mar 2022 01:45:16 +0000 Subject: [PATCH] Fix some spelling mistakes --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- discord/channel.py | 2 +- discord/ext/commands/help.py | 8 ++++---- discord/ui/item.py | 2 +- discord/utils.py | 10 +++++----- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index eabf5c071..671f440fc 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -64,7 +64,7 @@ body: attributes: label: Checklist description: > - Let's make sure you've properly done due dilligence when reporting this issue! + Let's make sure you've properly done due diligence when reporting this issue! options: - label: I have searched the open issues for duplicates. required: true diff --git a/discord/channel.py b/discord/channel.py index e4eb7e859..9f8d55c05 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -742,7 +742,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): reason: :class:`str` The reason for creating a new thread. Shows up on the audit log. invitable: :class:`bool` - Whether non-modertators can add users to the thread. Only applicable to private threads. + Whether non-moderators can add users to the thread. Only applicable to private threads. Defaults to ``True``. slowmode_delay: Optional[:class:`int`] Specifies the slowmode rate limit for user in this channel, in seconds. diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 78982187f..da09b1707 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -182,8 +182,8 @@ class Paginator: return fmt.format(self) -def _not_overriden(f): - f.__help_command_not_overriden__ = True +def _not_overridden(f): + f.__help_command_not_overridden__ = True return f @@ -201,7 +201,7 @@ class _HelpCommandImpl(Command): self.params = get_signature_parameters(injected.command_callback, globals(), skip_parameters=1) on_error = injected.on_help_command_error - if not hasattr(on_error, '__help_command_not_overriden__'): + if not hasattr(on_error, '__help_command_not_overridden__'): if self.cog is not None: self.on_error = self._on_error_cog_implementation else: @@ -643,7 +643,7 @@ class HelpCommand: destination = self.get_destination() await destination.send(error) - @_not_overriden + @_not_overridden async def on_help_command_error(self, ctx, error): """|coro| diff --git a/discord/ui/item.py b/discord/ui/item.py index 90dd26da8..89b706c10 100644 --- a/discord/ui/item.py +++ b/discord/ui/item.py @@ -123,7 +123,7 @@ class Item(Generic[V]): The callback associated with this UI item. - This can be overriden by subclasses. + This can be overridden by subclasses. Parameters ----------- diff --git a/discord/utils.py b/discord/utils.py index 44aacfd7e..49c458dd6 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -239,10 +239,10 @@ def parse_time(timestamp: Optional[str]) -> Optional[datetime.datetime]: def copy_doc(original: Callable) -> Callable[[T], T]: - def decorator(overriden: T) -> T: - overriden.__doc__ = original.__doc__ - overriden.__signature__ = _signature(original) # type: ignore - return overriden + def decorator(overridden: T) -> T: + overridden.__doc__ = original.__doc__ + overridden.__signature__ = _signature(original) # type: ignore + return overridden return decorator @@ -1076,7 +1076,7 @@ def is_inside_class(func: Callable[..., Any]) -> bool: # denoting which class it belongs to. So, e.g. for A.foo the qualname # would be A.foo while a global foo() would just be foo. # - # Unfortuately, for nested functions this breaks. So inside an outer + # Unfortunately, for nested functions this breaks. So inside an outer # function named outer, those two would end up having a qualname with # outer..A.foo and outer..foo