docs: remove duplicated words (#10178)

chore: remove repetitive words

Signed-off-by: avoidaway <cmoman@126.com>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
avoidaway 2024-04-05 03:29:34 +08:00 committed by GitHub
parent b6bdd578b9
commit 26af3868a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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

View file

@ -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