docs(Guild): handle error in example of fetchInvites correctly (#2568)

This commit is contained in:
Adrien Brignon
2018-05-27 20:51:58 +02:00
committed by SpaceEEC
parent f23b61794c
commit 13880fe7de

View File

@@ -484,7 +484,7 @@ class Guild {
* // Fetch invite creator by their id
* guild.fetchInvites()
* .then(invites => console.log(invites.find(invite => invite.inviter.id === '84484653687267328')))
* .then(console.error);
* .catch(console.error);
*/
fetchInvites() {
return this.client.rest.methods.getGuildInvites(this);