From c65d7a10ec8407216383400a6be49f2479e4c10d Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sat, 12 Nov 2016 21:10:28 -0500 Subject: [PATCH] Fix another JSDoc type issue --- .eslintrc.json | 3 ++- src/structures/Guild.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 8c94d1128..e477d36c6 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -26,7 +26,8 @@ "function": "Function", "array": "Array", "date": "Date", - "error": "Error" + "error": "Error", + "null": "void" } }], diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 9c58f82b9..43deeb8c2 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -350,7 +350,7 @@ class Guild { * @property {string} [name] The name of the guild * @property {string} [region] The region of the guild * @property {number} [verificationLevel] The verification level of the guild - * @property {GuildChannelResolvable} [afkChannel] The AFK channel of the guild + * @property {ChannelResolvable} [afkChannel] The AFK channel of the guild * @property {number} [afkTimeout] The AFK timeout of the guild * @property {Base64Resolvable} [icon] The icon of the guild * @property {GuildMemberResolvable} [owner] The owner of the guild