Fix typo in wait_for_reaction documentation.

This commit is contained in:
Rapptz 2016-12-07 07:23:12 -05:00
parent b7c90a5e3d
commit 51fda76555

View File

@ -773,7 +773,7 @@ class Client:
if message.content.startswith('$react'):
msg = await client.send_message(message.channel, 'React with thumbs up or thumbs down.')
res = await client.wait_for_reaction(['\N{THUMBS UP SIGN}', '\N{THUMBS DOWN SIGN}'], message=msg)
await client.send_message(message.channel, '{.user} reacted with {.reaction.emoji}!'.format(res))
await client.send_message(message.channel, '{0.user} reacted with {0.reaction.emoji}!'.format(res))
Checking for reaction emoji regardless of skin tone:
@ -789,7 +789,7 @@ class Client:
return e.startswith(('\N{THUMBS UP SIGN}', '\N{THUMBS DOWN SIGN}'))
res = await client.wait_for_reaction(message=msg, check=check)
await client.send_message(message.channel, '{.user} reacted with {.reaction.emoji}!'.format(res))
await client.send_message(message.channel, '{0.user} reacted with {0.reaction.emoji}!'.format(res))
Parameters
-----------