diff --git a/changelog.d/3390.misc.rst b/changelog.d/3390.misc.rst new file mode 100644 index 000000000..9167a63c8 --- /dev/null +++ b/changelog.d/3390.misc.rst @@ -0,0 +1 @@ +Fixes a typo in redbot/core/commands/requires.py. \ No newline at end of file diff --git a/redbot/core/commands/requires.py b/redbot/core/commands/requires.py index b6f188de1..f3614e0fa 100644 --- a/redbot/core/commands/requires.py +++ b/redbot/core/commands/requires.py @@ -95,8 +95,8 @@ class PrivilegeLevel(enum.IntEnum): """Enumeration for special privileges.""" # Maintainer Note: do NOT re-order these. - # Each privelege level also implies access to the ones before it. - # Inserting new privelege levels at a later point is fine if that is considered. + # Each privilege level also implies access to the ones before it. + # Inserting new privilege levels at a later point is fine if that is considered. NONE = enum.auto() """No special privilege level."""