Make docs catches use console.error

This commit is contained in:
Schuyler Cebulskie
2016-10-26 21:37:19 -04:00
parent d6f4a4e1a0
commit ab6750d06d
4 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ class WebhookClient extends Webhook {
* @example
* // create a new webhook and send a message
* let hook = new Discord.WebhookClient('1234', 'abcdef')
* hook.sendMessage('This will send a message').catch(console.log)
* hook.sendMessage('This will send a message').catch(console.error)
*/
constructor(id, token, options) {
super(null, id, token);