There was an error while loading. Please reload this page.
1 parent d661cfb commit 3e5ca7fCopy full SHA for 3e5ca7f
docs/types/readonly.md
@@ -52,7 +52,7 @@ type Foo = {
52
53
type FooReadonly = Readonly<Foo>;
54
55
-let foo: FOO = {bar: 123, bas: 456};
+let foo: Foo = {bar: 123, bas: 456};
56
let fooReadonly: FooReadonly = {bar: 123, bas: 456};
57
58
foo.bar = 456; // Okay
0 commit comments