From 89a9b93cdc64518444d6fcbda0349fac04b24f8d Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Sun, 30 Dec 2018 12:56:33 +0100 Subject: [PATCH] docs(Webhook): add mising '@name' to Webhook#token's docstring --- src/structures/Webhook.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/structures/Webhook.js b/src/structures/Webhook.js index 7c97a3aed..cf8f4f2f6 100644 --- a/src/structures/Webhook.js +++ b/src/structures/Webhook.js @@ -35,6 +35,7 @@ class Webhook extends EventEmitter { /** * The token for the webhook + * @name Webhook#token * @type {string} */ Object.defineProperty(this, 'token', { value: data.token, writable: true, configurable: true });