Skip to content

Commit

Permalink
docs: apply deno task gen
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Aug 11, 2024
1 parent 0c106ce commit 4a5dc04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions is/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ export const is: {
* }
* ```
*
* With `predElse`:
* With `predRest` to represent rest parameters:
*
* ```ts
* import { as, is } from "@core/unknownutil";
Expand Down Expand Up @@ -823,7 +823,7 @@ export const is: {
*/
SyncFunction: typeof isSyncFunction;
/**
* Return a type predicate function that returns `true` if the type of `x` is `TupleOf<T>` or `TupleOf<T, E>`.
* Return a type predicate function that returns `true` if the type of `x` is `TupleOf<T>` or `TupleOf<T, R>`.
*
* Use {@linkcode isUniformTupleOf} to check if the type of `x` is a tuple of uniform types.
*
Expand All @@ -839,7 +839,7 @@ export const is: {
* }
* ```
*
* With `predElse`:
* With `predRest` to represent rest elements:
*
* ```ts
* import { is } from "@core/unknownutil";
Expand Down

0 comments on commit 4a5dc04

Please sign in to comment.