diff options
| author | Rapptz <[email protected]> | 2016-05-23 15:06:09 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-05-23 15:06:09 -0400 |
| commit | f3f3ab1cd491f13499da51159c902e7acdaae55c (patch) | |
| tree | 5cd73415f034bc81b1c129c1a30d1bd2aca77f23 | |
| parent | Documentation fixes for role related functions. (diff) | |
| download | discord.py-f3f3ab1cd491f13499da51159c902e7acdaae55c.tar.xz discord.py-f3f3ab1cd491f13499da51159c902e7acdaae55c.zip | |
Reference the Discord UI in the permission documentation.
| -rw-r--r-- | discord/permissions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/permissions.py b/discord/permissions.py index 5420a5e4..97ee2e7c 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -147,19 +147,19 @@ class Permissions: @classmethod def general(cls): """A factory method that creates a :class:`Permissions` with all - "General" permissions set to True.""" + "General" permissions from the official Discord UI set to True.""" return cls(0b00011100000000000000000000111111) @classmethod def text(cls): """A factory method that creates a :class:`Permissions` with all - "Text" permissions set to True.""" + "Text" permissions from the official Discord UI set to True.""" return cls(0b00000000000000111111110000000000) @classmethod def voice(cls): """A factory method that creates a :class:`Permissions` with all - "Voice" permissions set to True.""" + "Voice" permissions from the official Discord UI set to True.""" return cls(0b00000011111100000000000000000000) |