Browse Source

Minor fix in migrating page.

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

2
docs/migrating.rst

@ -638,7 +638,7 @@ For example, to wait for a message: ::
def pred(m):
return m.author == message.author and m.channel == message.channel
msg = await client.wait_for('message', check=m)
msg = await client.wait_for('message', check=pred)
To facilitate multiple returns, :meth:`Client.wait_for` returns either a single argument, no arguments, or a tuple of
arguments.

Loading…
Cancel
Save