From d2da771e0f28773587766ede94cfdae222deefa0 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Tue, 18 Sep 2018 11:04:54 +0200 Subject: [PATCH] docs(Client): fix syntax error in fetchInvite example --- src/client/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/Client.js b/src/client/Client.js index e285b9237..d55b2d88e 100644 --- a/src/client/Client.js +++ b/src/client/Client.js @@ -257,7 +257,7 @@ class Client extends BaseClient { * @returns {Promise} * @example * client.fetchInvite('https://discord.gg/bRCvFy9') - * .then(invite => console.log(`Obtained invite with code: ${invite.code}`) + * .then(invite => console.log(`Obtained invite with code: ${invite.code}`)) * .catch(console.error); */ fetchInvite(invite) {