aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/client.py6
-rw-r--r--discord/message.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/discord/client.py b/discord/client.py
index b020f90a..f84209f5 100644
--- a/discord/client.py
+++ b/discord/client.py
@@ -364,9 +364,9 @@ class Client(object):
Example: ::
- for message in client.logs_from(channel):
- if message.content.startswith('!hello'):
- client.edit_message(message, 'goodbye')
+ for message in client.logs_from(channel):
+ if message.content.startswith('!hello'):
+ client.edit_message(message, 'goodbye')
:param channel: The :class:`Channel` to obtain the logs from.
diff --git a/discord/message.py b/discord/message.py
index c7d97b04..91140af1 100644
--- a/discord/message.py
+++ b/discord/message.py
@@ -61,7 +61,7 @@ class Message(object):
A boolean specifying if the message mentions everyone.
.. attribute:: mentions
- An array of :class:`User`s that were mentioned.
+ An array of :class:`User` that were mentioned.
.. attribute:: id
The message ID.