Skip to content

Commit

Permalink
Merge pull request #1218 from hyeonjae1122/master
Browse files Browse the repository at this point in the history
fix : a typo in docs
  • Loading branch information
samchon authored Aug 12, 2024
2 parents cbaa2e7 + b45abe6 commit 45c4950
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 45c4950

Please sign in to comment.