From f79ba52c7a1334d987e9873a8a411e92d5140116 Mon Sep 17 00:00:00 2001 From: almeidx Date: Fri, 11 Oct 2024 22:10:48 +0100 Subject: [PATCH] docs(Client): fix incorrect managers descriptions Co-authored-by: Luna <84203950+Wolvinny@users.noreply.github.com> --- packages/discord.js/src/client/Client.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/discord.js/src/client/Client.js b/packages/discord.js/src/client/Client.js index 1d378a4dcd3d..31b76cce0885 100644 --- a/packages/discord.js/src/client/Client.js +++ b/packages/discord.js/src/client/Client.js @@ -107,20 +107,20 @@ class Client extends BaseClient { : 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} */ 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 * @type {GuildManager} */ this.guilds = new GuildManager(this); /** - * All of the {@link BaseChannel}s that the client is currently handling, mapped by their ids - + * All of the {@link BaseChannel}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 * 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. @@ -174,7 +174,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} * @readonly */