aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMisa <[email protected]>2020-12-25 23:34:22 -0800
committerGitHub <[email protected]>2020-12-26 02:34:22 -0500
commit5d75a0e7d613948245d1eb0353fb660f4664c9ed (patch)
tree7530201c9be77883e4ce0070321c4b4c9239c175
parentFix 404 in search pages. (diff)
downloaddiscord.py-5d75a0e7d613948245d1eb0353fb660f4664c9ed.tar.xz
discord.py-5d75a0e7d613948245d1eb0353fb660f4664c9ed.zip
Capitalize Discord in docs of message related attributes
-rw-r--r--discord/message.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/message.py b/discord/message.py
index e2a5a07c..f47a45f3 100644
--- a/discord/message.py
+++ b/discord/message.py
@@ -281,7 +281,7 @@ class MessageReference:
The guild id of the message referenced.
resolved: Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]
The message that this reference resolved to. If this is ``None``
- then the original message was not fetched either due to the discord API
+ then the original message was not fetched either due to the Discord API
not attempting to resolve it or it not being available at the time of creation.
If the message was resolved at a prior point but has since been deleted then
this will be of type :class:`DeletedReferencedMessage`.
@@ -430,7 +430,7 @@ class Message(Hashable):
.. warning::
The order of the mentions list is not in any particular order so you should
- not rely on it. This is a discord limitation, not one with the library.
+ not rely on it. This is a Discord limitation, not one with the library.
channel_mentions: List[:class:`abc.GuildChannel`]
A list of :class:`abc.GuildChannel` that were mentioned. If the message is in a private message
then the list is always empty.