aboutsummaryrefslogtreecommitdiff
path: root/discord/guild.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-02-08 22:50:33 -0500
committerRapptz <[email protected]>2017-02-08 22:51:40 -0500
commit3504de4635ee8d40c8119d9453ec318c4820e8a0 (patch)
tree556e7845a30102e28c0b48bddc29a882fcce2bf3 /discord/guild.py
parentFix support for instant invites. (diff)
downloaddiscord.py-3504de4635ee8d40c8119d9453ec318c4820e8a0.tar.xz
discord.py-3504de4635ee8d40c8119d9453ec318c4820e8a0.zip
Fix more places where server is used instead of guild in docstrings.
Diffstat (limited to 'discord/guild.py')
-rw-r--r--discord/guild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py
index aeb4002b..2888b822 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -301,7 +301,7 @@ class Guild(Hashable):
@property
def splash_url(self):
- """Returns the URL version of the server's invite splash. Returns an empty string if it has no splash."""
+ """Returns the URL version of the guild's invite splash. Returns an empty string if it has no splash."""
if self.splash is None:
return ''
return 'https://cdn.discordapp.com/splashes/{0.id}/{0.splash}.jpg?size=2048'.format(self)