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
3 changed files with 3 additions and 3 deletions

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