We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f20643 commit 585a7e4Copy full SHA for 585a7e4
guides/hack/16-readonly/01-introduction.md
@@ -7,7 +7,7 @@ Expressions in Hack can be annotated with the `readonly` keyword. When an object
7
8
9
### Readonlyness
10
-Object properties of readonly values cannot be modified (i.e. mutated).
+Object properties of `readonly` values cannot be modified (i.e. mutated).
11
12
```Hack readonly.readonlyness.hack.type-errors
13
class Bar {
@@ -27,7 +27,7 @@ function test(readonly Foo $x) : void {
27
```
28
29
### Deepness
30
-All nested properties of readonly objects are readonly.
+All nested properties of `readonly` objects are readonly.
31
32
####
33
``` Hack readonly.deepness.hack.type-errors
0 commit comments