Browse Source

Fix mixed order in migrating docs.

pull/451/merge
Rapptz 8 years ago
parent
commit
0f7c1e09b0
  1. 2
      docs/migrating.rst

2
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

Loading…
Cancel
Save