Skip to content

Commit d74e192

Browse files
committed
the value a constant holds (not "hold")
1 parent 252d49d commit d74e192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manuscript/01-Block-Bindings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const maxItems = 5;
164164
maxItems = 6; // throws error
165165
```
166166

167-
Much like constants in other languages, the `maxItems` variable can't be assigned a new value later on. However, unlike constants in other language, the value a constant hold may be modified if it is an object.
167+
Much like constants in other languages, the `maxItems` variable can't be assigned a new value later on. However, unlike constants in other language, the value a constant holds may be modified if it is an object.
168168

169169
#### Declaring Objects with Const
170170

0 commit comments

Comments
 (0)