From 2abdbc70c2637da33f35af69abc8cd559c0b05f7 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 11 Feb 2017 23:34:19 -0500 Subject: Implement utilities for AsyncIterator. Closes #473. --- 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 160cbb4b..0398da6f 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -740,7 +740,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, reverse=None): - """Return an async iterator that enables receiving the destination's message history. + """Return an :class:`AsyncIterator` that enables receiving the destination's message history. You must have Read Message History permissions to use this. -- cgit v1.2.3