Skip to content

Commit aebe65f

Browse files
committed
doc: update JSDoc description
1 parent e768e58 commit aebe65f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Click the type names for complete docs.
263263
- [`SplitOnRestElement`](source/split-on-rest-element.d.ts) - Splits an array into three parts, where the first contains all elements before the rest element, the second is the [`rest`](https://www.typescriptlang.org/docs/handbook/2/objects.html#tuple-types) element itself, and the third contains all elements after the rest element.
264264
- [`ExtractRestElement`](source/extract-rest-element.d.ts) - Extract the [`rest`](https://www.typescriptlang.org/docs/handbook/2/objects.html#tuple-types) element type from an array.
265265
- [`ExcludeRestElement`](source/exclude-rest-element.d.ts) - Create a tuple with the [`rest`](https://www.typescriptlang.org/docs/handbook/2/objects.html#tuple-types) element removed.
266-
- [`ArrayReverse`](source/array-reverse.d.ts) - Reverses the order of elements in a tuple type.
266+
- [`ArrayReverse`](source/array-reverse.d.ts) - Reverse the order of elements in a tuple type.
267267

268268
### Numeric
269269

source/array-reverse.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {IsOptionalKeyOf} from './is-optional-key-of.d.ts';
55
import type {UnknownArray} from './unknown-array.d.ts';
66

77
/**
8-
Reverses the order of elements in a tuple type.
8+
Reverse the order of elements in a tuple type.
99
1010
@example
1111
```ts

0 commit comments

Comments
 (0)