Document GuildChannel.edit, add VoiceChannel.setUserLimit, fix typo (#866)

This commit is contained in:
Programmix
2016-10-31 22:42:05 -07:00
committed by Schuyler Cebulskie
parent 2a50dad852
commit 9a61de1493
5 changed files with 57 additions and 21 deletions

View File

@@ -347,14 +347,14 @@ class Guild {
/**
* The data for editing a guild
* @typedef {Object} GuildEditData
* @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 {number} afkTimeout The AFK timeout of the guild
* @property {Base64Resolvable} icon The icon of the guild
* @property {GuildMemberResolvable} owner The owner of the guild
* @property {Base64Resolvable} splash The splash screen of the 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 {number} [afkTimeout] The AFK timeout of the guild
* @property {Base64Resolvable} [icon] The icon of the guild
* @property {GuildMemberResolvable} [owner] The owner of the guild
* @property {Base64Resolvable} [splash] The splash screen of the guild
*/
/**