diff options
| author | Rapptz <[email protected]> | 2016-05-01 07:34:48 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-05-01 07:34:48 -0400 |
| commit | 5fa715c35033c4fd5438649a03f4d2835e7a7f06 (patch) | |
| tree | 4278cdacd0fe207b005df662068ec7ed0948e57d | |
| parent | Make Permissions an iterable class. (diff) | |
| download | discord.py-5fa715c35033c4fd5438649a03f4d2835e7a7f06.tar.xz discord.py-5fa715c35033c4fd5438649a03f4d2835e7a7f06.zip | |
Fix typo in Message.role_mentions documentation.
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 0e614fbb..ea7bfd64 100644 --- a/discord/message.py +++ b/discord/message.py @@ -84,7 +84,7 @@ class Message: A list of :class:`Channel` that were mentioned. If the message is in a private message then the list is always empty. role_mentions : list - A list of :class:`Role`s that were mentioned. If the message is in a private message + A list of :class:`Role` that were mentioned. If the message is in a private message then the list is always empty. id : str The message ID. |