aboutsummaryrefslogtreecommitdiff
path: root/discord/abc.py
diff options
context:
space:
mode:
authorEhren Julien-Neitzert <[email protected]>2019-05-23 23:31:17 -0400
committerDanny <[email protected]>2019-05-23 23:31:17 -0400
commitfc5a2936dd9456f1489dc1125c12448a2af23e15 (patch)
tree7c53fbf6c6a8779967c54d73b44269105c36bc79 /discord/abc.py
parentGrammar fixes for notes on EmbedProxy (diff)
downloaddiscord.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/abc.py')
-rw-r--r--discord/abc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/abc.py b/discord/abc.py
index a0f424d6..6c0350db 100644
--- a/discord/abc.py
+++ b/discord/abc.py
@@ -905,7 +905,7 @@ class Messageable(metaclass=abc.ABCMeta):
return [state.create_message(channel=channel, data=m) for m in data]
def history(self, *, limit=100, before=None, after=None, around=None, oldest_first=None):
- """Return an :class:`.AsyncIterator` that enables receiving the destination's message history.
+ """Returns an :class:`.AsyncIterator` that enables receiving the destination's message history.
You must have :attr:`~.Permissions.read_message_history` permissions to use this.