From 85a78f96d4df637099bf650b41b3580e3891905c Mon Sep 17 00:00:00 2001 From: dank <133713894+ignxdank@users.noreply.github.com> Date: Sat, 4 Nov 2023 22:47:52 +0000 Subject: [PATCH] docs(Message): remove duplicated word 'of' in description (#9923) fix(Message): remove duplicated word 'of' in description This commit removes the secondary 'of' in the description for the Message structure. This doesn't change anything drastically in terms of the actual code as it's just a JSDoc comment. Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/discord.js/src/structures/Message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/discord.js/src/structures/Message.js b/packages/discord.js/src/structures/Message.js index 75b327dc5cce..7f145b3b8436 100644 --- a/packages/discord.js/src/structures/Message.js +++ b/packages/discord.js/src/structures/Message.js @@ -148,7 +148,7 @@ class Message extends Base { if ('components' in data) { /** - * An array of of action rows in the message. + * An array of action rows in the message. * This property requires the {@link GatewayIntentBits.MessageContent} privileged intent * in a guild for messages that do not mention the client. * @type {ActionRow[]}