Skip to content

Commit 5be8aa0

Browse files
authored
Fix: typo in FAQ.md file (microsoft#340)
1 parent 48bffd0 commit 5be8aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FAQ.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ If your scenario requires every comment, or some particular form of comment, to
411411

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

417417
function foo(x: Box<string>) {

0 commit comments

Comments
 (0)