From 86e5f5a119c6d2588b988a33236d358ded357847 Mon Sep 17 00:00:00 2001 From: Almeida Date: Fri, 14 Apr 2023 22:49:51 +0100 Subject: [PATCH] docs(Options): fix links and invalid syntax (#9322) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/discord.js/src/util/Options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/discord.js/src/util/Options.js b/packages/discord.js/src/util/Options.js index 77638259c2ce..a0669a720144 100644 --- a/packages/discord.js/src/util/Options.js +++ b/packages/discord.js/src/util/Options.js @@ -163,7 +163,7 @@ class Options extends null { } /** - * The default settings passed to {@link Options.cacheWithLimits}. + * The default settings passed to {@link ClientOptions.makeCache}. * The caches that this changes are: * * `MessageManager` - Limit to 200 messages * If you want to keep default behavior and add on top of it you can use this object and add on to it, e.g. @@ -177,11 +177,11 @@ class Options extends null { } /** - * The default settings passed to {@link Options.sweepers} (for v14). + * The default settings passed to {@link ClientOptions.sweepers}. * The sweepers that this changes are: * * `threads` - Sweep archived threads every hour, removing those archived more than 4 hours ago * If you want to keep default behavior and add on top of it you can use this object and add on to it, e.g. - * `sweepers: { ...Options.DefaultSweeperSettings, messages: { interval: 300, lifetime: 600 } })` + * `sweepers: { ...Options.DefaultSweeperSettings, messages: { interval: 300, lifetime: 600 } }` * @type {SweeperOptions} */ static get DefaultSweeperSettings() {