Skip to content

Commit

Permalink
Fix: typo in FAQ.md file (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
MacMacky authored Oct 25, 2024
1 parent 48bffd0 commit 5be8aa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ If your scenario requires every comment, or some particular form of comment, to

Consider a function call where TypeScript must perform type inference:
```ts
type Box<T> = { contents: T };
type Box<T> = { value: T };
declare function unbox<T>(arg: Box<T>): T;

function foo(x: Box<string>) {
Expand Down

0 comments on commit 5be8aa0

Please sign in to comment.