diff options
| author | JohnyTheCarrot <[email protected]> | 2020-06-05 05:38:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-04 23:38:57 -0400 |
| commit | 010ce0519ae1e9f381b29f252464120157825886 (patch) | |
| tree | beacbda37ce418d141e0666d6da8a7f573e9bd7c | |
| parent | [docs] Fix PublicUserFlags not showing up (diff) | |
| download | discord.py-010ce0519ae1e9f381b29f252464120157825886.tar.xz discord.py-010ce0519ae1e9f381b29f252464120157825886.zip | |
Fix incorrect class reference in documentation
| -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 69947a60..1f5c508a 100644 --- a/discord/user.py +++ b/discord/user.py @@ -134,7 +134,7 @@ class BaseUser(_BaseUser): @property def public_flags(self): - """:class:`PublicFlags`: The publicly available flags the user has.""" + """:class:`PublicUserFlags`: The publicly available flags the user has.""" return PublicUserFlags._from_value(self._public_flags) @property |