diff options
| author | Rapptz <[email protected]> | 2017-02-11 23:34:19 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-02-11 23:34:19 -0500 |
| commit | 2abdbc70c2637da33f35af69abc8cd559c0b05f7 (patch) | |
| tree | 19df7f0093a9c086a5b892c9470b11210267cb87 /discord/reaction.py | |
| parent | Add Client.get_user_profile to get an arbitrary user's profile. (diff) | |
| download | discord.py-2abdbc70c2637da33f35af69abc8cd559c0b05f7.tar.xz discord.py-2abdbc70c2637da33f35af69abc8cd559c0b05f7.zip | |
Implement utilities for AsyncIterator.
Closes #473.
Diffstat (limited to 'discord/reaction.py')
| -rw-r--r-- | discord/reaction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/reaction.py b/discord/reaction.py index b5533776..1454ca8e 100644 --- a/discord/reaction.py +++ b/discord/reaction.py @@ -89,7 +89,7 @@ class Reaction: def users(self, limit=None, after=None): """|coro| - Returns an asynchronous iterator representing the + Returns an :class:`AsyncIterator` representing the users that have reacted to the message. The ``after`` parameter must represent a member |