Skip to content

Commit f163b6e

Browse files
committed
Punctuation
1 parent 940a832 commit f163b6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ M[Top] is defined as Y => (Y extends unknown)
277277
The restrictive instantiation will map all type parameters to the input parameter with an `unknown` constraint. If the input parameter has a type constraint this will be erased and replaced with `unknown`. For example:
278278

279279
```
280-
M[Top](X extends string) === (X extends unknown).
280+
M[Top](X extends string) === (X extends unknown)
281281
```
282282

283283
## Typing Relations

0 commit comments

Comments
 (0)