diff options
| author | Ehren Julien-Neitzert <[email protected]> | 2019-05-23 23:31:17 -0400 |
|---|---|---|
| committer | Danny <[email protected]> | 2019-05-23 23:31:17 -0400 |
| commit | fc5a2936dd9456f1489dc1125c12448a2af23e15 (patch) | |
| tree | 7c53fbf6c6a8779967c54d73b44269105c36bc79 /discord/guild.py | |
| parent | Grammar fixes for notes on EmbedProxy (diff) | |
| download | discord.py-fc5a2936dd9456f1489dc1125c12448a2af23e15.tar.xz discord.py-fc5a2936dd9456f1489dc1125c12448a2af23e15.zip | |
Fix pluralization errors in various files
* Replaced instances of 'return an' with 'returns an'
* fixed pluralization errors
Diffstat (limited to 'discord/guild.py')
| -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 fc59ce70..2a6226aa 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -1458,7 +1458,7 @@ class Guild(Hashable): return state.http.ack_guild(self.id) def audit_logs(self, *, limit=100, before=None, after=None, oldest_first=None, user=None, action=None): - """Return an :class:`AsyncIterator` that enables receiving the guild's audit logs. + """Returns an :class:`AsyncIterator` that enables receiving the guild's audit logs. You must have the :attr:`~Permissions.view_audit_log` permission to use this. |