aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRapptz <[email protected]>2017-06-05 23:15:29 -0400
committerRapptz <[email protected]>2017-06-05 23:15:29 -0400
commit0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1 (patch)
tree11bb9cd193321bdb5feb7d1f2a486d2f8b353d39 /docs
parent[commands] Add docstrings for extension loading. (diff)
downloaddiscord.py-0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1.tar.xz
discord.py-0f7c1e09b01fc819fafcd24e94f4274a0f75bfc1.zip
Fix mixed order in migrating docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/migrating.rst2
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