docs(Client): Fix incorrect managers descriptions

This commit is contained in:
Elysia
2025-01-21 01:20:04 +07:00
parent 6f17a5b4cd
commit 002b1d8fc0

View File

@@ -98,20 +98,20 @@ class Client extends BaseClient {
: null; : null;
/** /**
* All of the {@link User} objects that have been cached at any point, mapped by their ids * The user manager of this client
* @type {UserManager} * @type {UserManager}
*/ */
this.users = new UserManager(this); this.users = new UserManager(this);
/** /**
* All of the guilds the client is currently handling, mapped by their ids - * A manager of all the guilds the client is currently handling -
* as long as sharding isn't being used, this will be *every* guild the bot is a member of * as long as sharding isn't being used, this will be *every* guild the bot is a member of
* @type {GuildManager} * @type {GuildManager}
*/ */
this.guilds = new GuildManager(this); this.guilds = new GuildManager(this);
/** /**
* All of the {@link Channel}s that the client is currently handling, mapped by their ids - * All of the {@link Channel}s that the client is currently handling -
* as long as sharding isn't being used, this will be *every* channel in *every* guild the bot * as long as sharding isn't being used, this will be *every* channel in *every* guild the bot
* is a member of. Note that DM channels will not be initially cached, and thus not be present * is a member of. Note that DM channels will not be initially cached, and thus not be present
* in the Manager without their explicit fetching or use. * in the Manager without their explicit fetching or use.
@@ -201,7 +201,7 @@ class Client extends BaseClient {
} }
/** /**
* All custom emojis that the client has access to, mapped by their ids * A manager of all the custom emojis that the client has access to
* @type {BaseGuildEmojiManager} * @type {BaseGuildEmojiManager}
* @readonly * @readonly
*/ */