Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/samchon/typia into featur…
Browse files Browse the repository at this point in the history
…e/json-schema-bigint
  • Loading branch information
samchon committed Aug 13, 2024
2 parents 651de83 + 45c4950 commit 89af87e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/pages/docs/validators/assert.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -440,10 +440,10 @@ import { v4 } from "uuid";
]}>
<Tab>
```typescript
export function assertGuard<T>(input: T): asserts inut is T;
export function assertGuard<T>(input: T): asserts input is T;
export function assertGuard<T>(input: unknown): asserts input is T;

export function assertGuardEquals<T>(input: T): asserts inut is T;
export function assertGuardEquals<T>(input: T): asserts input is T;
export function assertGuardEquals<T>(input: unknown): asserts input is T;
```
</Tab>
Expand Down

0 comments on commit 89af87e

Please sign in to comment.