diff --git a/packages/api-extractor/src/api/IConfigFile.ts b/packages/api-extractor/src/api/IConfigFile.ts index 4e014d56e..6e136ff81 100644 --- a/packages/api-extractor/src/api/IConfigFile.ts +++ b/packages/api-extractor/src/api/IConfigFile.ts @@ -265,7 +265,7 @@ export interface IConfigMessageReportingRule { addToApiReportFile?: boolean; /** - * Specifies whether the message should be written to the the tool's output log. + * Specifies whether the message should be written to the tool's output log. * * @remarks * Note that the `addToApiReportFile` property may supersede this option. diff --git a/packages/core/src/api/interactions.ts b/packages/core/src/api/interactions.ts index 3bf7fcb30..2cd0a9d18 100644 --- a/packages/core/src/api/interactions.ts +++ b/packages/core/src/api/interactions.ts @@ -176,7 +176,7 @@ export class InteractionsAPI { } /** - * Updates the the message the component interaction was triggered on + * Updates the message the component interaction was triggered on * * @see {@link https://discord.com/developers/docs/interactions/receiving-and-responding#create-interaction-response} * @param interactionId - The id of the interaction diff --git a/packages/util/src/functions/range.ts b/packages/util/src/functions/range.ts index 8262773f6..8ef5c514b 100644 --- a/packages/util/src/functions/range.ts +++ b/packages/util/src/functions/range.ts @@ -24,7 +24,7 @@ export interface RangeOptions { * @remarks * This method is end-exclusive, for example the last number yielded by `range(5)` is 4. If you * prefer for the end to be included add 1 to the range or `end` option. - * @param range - A number representing the the range to yield (exclusive) or an object with start, end and step + * @param range - A number representing the range to yield (exclusive) or an object with start, end and step * @example * Basic range * ```ts