Browse Source

Fix FAQ using string for IDs.

pull/572/head
Rapptz 8 years ago
parent
commit
6b3abeb810
  1. 2
      docs/faq.rst

2
docs/faq.rst

@ -106,7 +106,7 @@ How do I send a message to a specific channel?
You must fetch the channel directly and then call the appropriate method. Example: ::
channel = client.get_channel('12324234183172')
channel = client.get_channel(12324234183172)
await channel.send('hello')
How do I upload an image?

Loading…
Cancel
Save