Skip to content

Commit 3e5ca7f

Browse files
authored
Update readonly.md
1 parent d661cfb commit 3e5ca7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/types/readonly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ type Foo = {
5252

5353
type FooReadonly = Readonly<Foo>;
5454

55-
let foo: FOO = {bar: 123, bas: 456};
55+
let foo: Foo = {bar: 123, bas: 456};
5656
let fooReadonly: FooReadonly = {bar: 123, bas: 456};
5757

5858
foo.bar = 456; // Okay

0 commit comments

Comments
 (0)