This commit is contained in:
Travis CI 2016-12-16 01:11:35 +00:00
parent df2274bcac
commit 34e8a43b79

View file

@ -9200,7 +9200,7 @@ class MessageCollector extends EventEmitter {
* return false; // failed the filter test * return false; // failed the filter test
* } * }
* ``` * ```
* @typedef {function} CollectorFilterFunction * @typedef {Function} CollectorFilterFunction
*/ */
/** /**
@ -22518,7 +22518,7 @@ class UserConnection {
/** /**
* Whether the connection is revoked * Whether the connection is revoked
* @type {Boolean} * @type {boolean}
*/ */
this.revoked = data.revoked; this.revoked = data.revoked;
@ -22577,7 +22577,7 @@ class UserProfile {
setup(data) { setup(data) {
/** /**
* If the user has Discord Premium * If the user has Discord Premium
* @type {Boolean} * @type {boolean}
*/ */
this.premium = data.premium; this.premium = data.premium;