diff --git a/apps/guide/content/docs/legacy/miscellaneous/useful-packages.mdx b/apps/guide/content/docs/legacy/miscellaneous/useful-packages.mdx index 00ea924ac..f95d1cbd3 100644 --- a/apps/guide/content/docs/legacy/miscellaneous/useful-packages.mdx +++ b/apps/guide/content/docs/legacy/miscellaneous/useful-packages.mdx @@ -110,7 +110,7 @@ interaction.reply(oneLineCommaListsOr` `); ``` -Check the the documentation to find more useful functions. +Check the documentation to find more useful functions. ## chalk diff --git a/packages/brokers/src/brokers/redis/RedisGateway.ts b/packages/brokers/src/brokers/redis/RedisGateway.ts index 4e4498615..8749b8dc9 100644 --- a/packages/brokers/src/brokers/redis/RedisGateway.ts +++ b/packages/brokers/src/brokers/redis/RedisGateway.ts @@ -35,8 +35,8 @@ export type RedisBrokerDiscordEvents = { * events as the receiving service expects, and also that you handle GatewaySend events. * - One drawback to using this directly with `@discordjs/core` is that you lose granular control over when to `ack` * events. This implementation `ack`s as soon as the event is emitted to listeners. In practice, this means that if your - * service crashes while handling an event, it's pretty arbitrary wether that event gets re-processed on restart or not. - * (Mostly dependant on if your handler is async or not, and also if the `ack` call has time to go through). + * service crashes while handling an event, it's pretty arbitrary whether that event gets re-processed on restart or not. + * (Mostly dependent on if your handler is async or not, and also if the `ack` call has time to go through). * * @example * ```ts diff --git a/packages/discord.js/src/structures/CommandInteractionOptionResolver.js b/packages/discord.js/src/structures/CommandInteractionOptionResolver.js index a434510ff..64ac3c737 100644 --- a/packages/discord.js/src/structures/CommandInteractionOptionResolver.js +++ b/packages/discord.js/src/structures/CommandInteractionOptionResolver.js @@ -97,7 +97,7 @@ class CommandInteractionOptionResolver { * * @param {string} name The name of the option. * @param {ApplicationCommandOptionType[]} allowedTypes The allowed types of the option. - * @param {string[]} properties The properties to check for for `required`. + * @param {string[]} properties The properties to check for `required`. * @param {boolean} required Whether to throw an error if the option is not found. * @returns {?CommandInteractionOption} The option, if found. * @private diff --git a/packages/discord.js/src/structures/ModalComponentResolver.js b/packages/discord.js/src/structures/ModalComponentResolver.js index e1fdfeb0b..3b6d7593d 100644 --- a/packages/discord.js/src/structures/ModalComponentResolver.js +++ b/packages/discord.js/src/structures/ModalComponentResolver.js @@ -79,7 +79,7 @@ class ModalComponentResolver { * * @param {string} customId The custom id of the component. * @param {ComponentType[]} allowedTypes The allowed types of the component. - * @param {string[]} properties The properties to check for for `required`. + * @param {string[]} properties The properties to check for `required`. * @param {boolean} required Whether to throw an error if the component value(s) are not found. * @returns {ModalData} The option, if found. * @private