Fixes various documentation errors/inconsistencies

Mostly dealing with permissions, also fixes Raw Events inclusion.
This commit is contained in:
Steve C
2018-05-10 03:34:13 -04:00
committed by Rapptz
parent 0dafdedc65
commit 0e945915b7
9 changed files with 59 additions and 37 deletions

View File

@@ -258,7 +258,7 @@ class Permissions:
def manage_channels(self):
"""Returns True if a user can edit, delete, or create channels in the guild.
This also corresponds to the "manage channel" channel-specific override."""
This also corresponds to the "Manage Channel" channel-specific override."""
return self._bit(4)
@manage_channels.setter
@@ -453,7 +453,7 @@ class Permissions:
def manage_roles(self):
"""Returns True if a user can create or edit roles less than their role's position.
This also corresponds to the "manage permissions" channel-specific override.
This also corresponds to the "Manage Permissions" channel-specific override.
"""
return self._bit(28)