From 2800e07e5974e07b9f8ce043722b9b99a5bcc80d Mon Sep 17 00:00:00 2001 From: n1ck_pro <59617443+N1ckPro@users.noreply.github.com> Date: Mon, 7 Feb 2022 11:49:27 +0100 Subject: [PATCH] docs(messageattachment): fix `contentType` docs (#7413) --- packages/discord.js/src/structures/MessageAttachment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/discord.js/src/structures/MessageAttachment.js b/packages/discord.js/src/structures/MessageAttachment.js index 79e87bf2b..3426a17ae 100644 --- a/packages/discord.js/src/structures/MessageAttachment.js +++ b/packages/discord.js/src/structures/MessageAttachment.js @@ -124,7 +124,7 @@ class MessageAttachment { if ('content_type' in data) { /** - * This media type of this attachment + * The media type of this attachment * @type {?string} */ this.contentType = data.content_type;