diff options
| author | Sebastian Law <[email protected]> | 2021-02-22 05:51:34 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-22 08:51:34 -0500 |
| commit | cc55a28be51b69c298614158ef49e93d132021ca (patch) | |
| tree | e1c51069c83659e29cef2d82a7bcc5c55e75039a | |
| parent | Fix up previous PR mistake with intentional backslashes (diff) | |
| download | discord.py-cc55a28be51b69c298614158ef49e93d132021ca.tar.xz discord.py-cc55a28be51b69c298614158ef49e93d132021ca.zip | |
Fix typo in Guild.fetch_member docs
| -rw-r--r-- | discord/guild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py index caba7376..cd4dde98 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -1317,7 +1317,7 @@ class Guild(Hashable): async def fetch_member(self, member_id): """|coro| - Retreives a :class:`Member` from a guild ID, and a member ID. + Retrieves a :class:`Member` from a guild ID, and a member ID. .. note:: |