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

@@ -166,12 +166,12 @@ class Role {
/**
* The data for a role
* @typedef {Object} RoleData
* @property {string} name The name of the role
* @property {number|string} color The color of the role, either a hex string or a base 10 number
* @property {boolean} hoist Whether or not the role should be hoisted
* @property {number} position The position of the role
* @property {string[]} permissions The permissions of the role
* @property {boolean} mentionable Whether or not the role should be mentionable
* @property {string} [name] The name of the role
* @property {number|string} [color] The color of the role, either a hex string or a base 10 number
* @property {boolean} [hoist] Whether or not the role should be hoisted
* @property {number} [position] The position of the role
* @property {string[]} [permissions] The permissions of the role
* @property {boolean} [mentionable] Whether or not the role should be mentionable
*/
/**