diff options
| author | Mippy (William) <[email protected]> | 2017-10-30 18:57:40 -0700 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-11-12 16:58:28 -0500 |
| commit | b5bc5a36ce7df3997aa258c142f74b6beaccb5c4 (patch) | |
| tree | 87e46ad2245528de69732ef3adf141b58b1a4801 | |
| parent | Fix Webhook.delete not working. (diff) | |
| download | discord.py-b5bc5a36ce7df3997aa258c142f74b6beaccb5c4.tar.xz discord.py-b5bc5a36ce7df3997aa258c142f74b6beaccb5c4.zip | |
Fix Spelling Error
| -rw-r--r-- | discord/user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/user.py b/discord/user.py index 0d31a22f..b476f4df 100644 --- a/discord/user.py +++ b/discord/user.py @@ -159,7 +159,7 @@ class BaseUser(_BaseUser): @property def default_avatar(self): - """Returns the default avatar for a given user. This is calculated by the user's descriminator""" + """Returns the default avatar for a given user. This is calculated by the user's discriminator""" return DefaultAvatar(int(self.discriminator) % len(DefaultAvatar)) @property |