diff options
| author | Rapptz <[email protected]> | 2017-06-05 23:15:29 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-06-05 23:15:29 -0400 |
| commit | 0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1 (patch) | |
| tree | 11bb9cd193321bdb5feb7d1f2a486d2f8b353d39 /docs | |
| parent | [commands] Add docstrings for extension loading. (diff) | |
| download | discord.py-0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1.tar.xz discord.py-0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1.zip | |
Fix mixed order in migrating docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/migrating.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/migrating.rst b/docs/migrating.rst index 0247ad26..ccf5e2b1 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -645,7 +645,7 @@ arguments. For example, to wait for a reaction: :: - user, reaction = await client.wait_for('reaction_add', check=lambda u, r: u.id == 176995180300206080) + reaction, user = await client.wait_for('reaction_add', check=lambda u, r: u.id == 176995180300206080) # use user and reaction |