docs(CategoryChannel): Fix children being incorrectly marked as nullable (#4620)

This commit is contained in:
Jan
2020-08-11 22:58:30 +02:00
committed by GitHub
parent a663ea4d2c
commit f628981f42

View File

@@ -9,7 +9,7 @@ const GuildChannel = require('./GuildChannel');
class CategoryChannel extends GuildChannel {
/**
* Channels that are a part of this category
* @type {?Collection<Snowflake, GuildChannel>}
* @type {Collection<Snowflake, GuildChannel>}
* @readonly
*/
get children() {