diff --git a/packages/discord.js/src/structures/Attachment.js b/packages/discord.js/src/structures/Attachment.js index 2576ff59cdb16..a7d5841f97eb8 100644 --- a/packages/discord.js/src/structures/Attachment.js +++ b/packages/discord.js/src/structures/Attachment.js @@ -77,8 +77,9 @@ class Attachment { if ('content_type' in data) { /** - * The media type of this attachment + * The media (MIME) type of this attachment * @type {?string} + * @see {@link https://developer.mozilla.org/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types} */ this.contentType = data.content_type; } else {