From fc5a2936dd9456f1489dc1125c12448a2af23e15 Mon Sep 17 00:00:00 2001 From: Ehren Julien-Neitzert Date: Thu, 23 May 2019 23:31:17 -0400 Subject: Fix pluralization errors in various files * Replaced instances of 'return an' with 'returns an' * fixed pluralization errors --- discord/abc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord/abc.py') 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. -- cgit v1.2.3