Fix mixed order in migrating docs.

This commit is contained in:
Rapptz 2017-06-05 23:15:29 -04:00
parent 83dc93559c
commit 0f7c1e09b0

View File

@ -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