Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 4698ce4

Browse files
committed
Fix lint: Remove extraneous character
1 parent 5eb56c0 commit 4698ce4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/Advanced Types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ In a mapped type, the new type transforms each property in the old type in the s
777777
For example, you can make all properties of a type `readonly` or optional.
778778
Here are a couple of examples:
779779

780-
```ts
780+
```ts
781781
type Readonly<T> = {
782782
readonly [P in keyof T]: T[P];
783783
}

0 commit comments

Comments
 (0)