Skip to content

Commit 66b9718

Browse files
Jiralitekodiakhq[bot]
andcommittedJan 29, 2025··
docs: Use link tags to render links on the documentation (#10731)
* docs: use link tags * docs(DateResolvable): update link --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 43235d4 commit 66b9718

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed
 

‎packages/discord.js/src/managers/ThreadManager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class ThreadManager extends CachedManager {
9797
* Data that can be resolved to a Date object. This can be:
9898
* * A Date object
9999
* * A number representing a timestamp
100-
* * An [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) string
100+
* * An {@link https://en.wikipedia.org/wiki/ISO_8601 ISO 8601} string
101101
* @typedef {Date|number|string} DateResolvable
102102
*/
103103

‎packages/discord.js/src/sharding/ShardClientUtil.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ class ShardClientUtil {
225225
* Emitted when the client encounters an error.
226226
* <warn>Errors thrown within this event do not have a catch handler, it is
227227
* recommended to not use async functions as `error` event handlers. See the
228-
* [Node.js docs](https://nodejs.org/api/events.html#capture-rejections-of-promises) for details.</warn>
228+
* {@link https://nodejs.org/api/events.html#capture-rejections-of-promises Node.js documentation}
229+
* for details.)</warn>
229230
* @event Client#error
230231
* @param {Error} error The error encountered
231232
*/

‎packages/discord.js/src/structures/interfaces/TextBasedChannel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class TextBasedChannel {
7575
* @property {?string} [content=''] The content for the message. This can only be `null` when editing a message.
7676
* @property {Array<(EmbedBuilder|Embed|APIEmbed)>} [embeds] The embeds for the message
7777
* @property {MessageMentionOptions} [allowedMentions] Which mentions should be parsed from the message content
78-
* (see [here](https://discord.com/developers/docs/resources/message#allowed-mentions-object) for more details)
78+
* (see {@link https://discord.com/developers/docs/resources/message#allowed-mentions-object here} for more details)
7979
* @property {Array<(AttachmentBuilder|Attachment|AttachmentPayload|BufferResolvable)>} [files]
8080
* The files to send with the message.
8181
* @property {Array<(ActionRowBuilder|ActionRow|APIActionRowComponent)>} [components]

0 commit comments

Comments
 (0)
Please sign in to comment.