aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve C <[email protected]>2017-08-21 23:45:34 -0400
committerRapptz <[email protected]>2017-08-22 04:45:52 -0400
commit7ee5dc22fb1b751c6838f655606d648cb17ac8df (patch)
treeecb303bfe0b5d9b4cbe95ef6b3c1cab8d21dcf04
parentFix multi-part sending with aiohttp in webhooks. (diff)
downloaddiscord.py-7ee5dc22fb1b751c6838f655606d648cb17ac8df.tar.xz
discord.py-7ee5dc22fb1b751c6838f655606d648cb17ac8df.zip
Fix a couple docstrings
-rw-r--r--discord/webhook.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/discord/webhook.py b/discord/webhook.py
index b5800787..e1b62c21 100644
--- a/discord/webhook.py
+++ b/discord/webhook.py
@@ -361,7 +361,7 @@ class Webhook:
@classmethod
def partial(cls, id, token, *, adapter):
- """Creates an partial :class:`Webhook`.
+ """Creates a partial :class:`Webhook`.
A partial webhook is just a webhook object with an ID and a token.
@@ -419,7 +419,7 @@ class Webhook:
def guild(self):
"""Optional[:class:`Guild`]: The guild this webhook belongs to.
- If this is an partial webhook, then this will always return ``None``.
+ If this is a partial webhook, then this will always return ``None``.
"""
return self._state and self._state.get_guild(self.guild_id)
@@ -427,7 +427,7 @@ class Webhook:
def channel(self):
"""Optional[:class:`TextChannel`]: The text channel this webhook belongs to.
- If this is an partial webhook, then this will always return ``None``.
+ If this is a partial webhook, then this will always return ``None``.
"""
guild = self.guild
return guild and guild.get_channel(self.channel_id)