Fix stray colon in Asset related docstrings

This commit is contained in:
Rapptz
2019-06-04 19:06:31 -04:00
parent 9674055c2a
commit fcf02414fe
3 changed files with 6 additions and 6 deletions

View File

@ -114,7 +114,7 @@ class BaseUser(_BaseUser):
@property
def avatar_url(self):
"""Returns a :class:`Asset`: for the avatar the user has.
"""Returns a :class:`Asset` for the avatar the user has.
If the user does not have a traditional avatar, an asset for
the default avatar is returned instead.
@ -129,7 +129,7 @@ class BaseUser(_BaseUser):
return bool(self.avatar and self.avatar.startswith('a_'))
def avatar_url_as(self, *, format=None, static_format='webp', size=1024):
"""Returns a :class:`Asset`: for the avatar the user has.
"""Returns a :class:`Asset` for the avatar the user has.
If the user does not have a traditional avatar, an asset for
the default avatar is returned instead.